working on tag handling in accounting module

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2026-04-10 00:02:54 +02:00
parent 85efb0ec02
commit ec3add70c6
11 changed files with 114 additions and 31 deletions

View File

@@ -153,8 +153,13 @@ public class TagModule extends BaseHandler implements TagService {
return tag;
}
@Override
public Collection<String> search(String key, UmbrellaUser user) {
return tagDb.search(key, user);
}
private boolean searchTags(HttpExchange ex, String head, UmbrellaUser user) throws IOException {
return sendContent(ex, tagDb.search(head, user));
return sendContent(ex, search(head, user));
}
@Override