Rule engine and search engine now use the same operators; making them interchangeable.

This commit is contained in:
James Cole
2020-08-21 08:23:44 +02:00
parent 3081911eae
commit d69934ca8f
11 changed files with 141 additions and 165 deletions

View File

@@ -49,6 +49,6 @@ class Domain
*/
public static function getRuleTriggers(): array
{
return config('firefly.rule-triggers');
return array_keys(config('firefly.search.operators'));
}
}