Show excluded words in UI

This commit is contained in:
Sobuno
2025-01-03 00:08:11 +01:00
parent 0c955efa8b
commit 058a0f9fb2
5 changed files with 16 additions and 3 deletions

View File

@@ -123,6 +123,11 @@ class OperatorQuerySearch implements SearchInterface
return implode(' ', $this->words);
}
public function getExcludedWordsAsString(): string
{
return implode(' ', $this->prohibitedWords);
}
/**
* @throws FireflyException
*/