implemented easy-list

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-11-28 13:56:55 +01:00
parent 40c35bc9ed
commit b0550db5c2
13 changed files with 202 additions and 5 deletions

View File

@@ -112,8 +112,12 @@ public class TagModule extends BaseHandler implements TagService {
}
}
public Map<String, List<Long>> getTagUses(UmbrellaUser user, String tag){
return tagDb.getUses(tag,user.id());
}
private boolean getTagUses(HttpExchange ex, String tag, UmbrellaUser user) throws IOException {
return sendContent(ex,tagDb.getUses(tag,user.id()));
return sendContent(ex,getTagUses(user,tag));
}
public Collection<String> getTags(String module, long entityId, UmbrellaUser user) throws UmbrellaException{