implemented easy-list
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
@@ -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{
|
||||
|
||||
Reference in New Issue
Block a user