implemented hiding/unhiding of mailing lists on the database side

This commit is contained in:
2022-04-16 08:01:58 +02:00
parent 64ff431360
commit 321f05c09a
14 changed files with 245 additions and 65 deletions

View File

@@ -43,7 +43,7 @@ public class ListMember {
Database.open().query(sql.toString()).run();
}
public static List<String> listsOf(User user) {
public static List<String> listsOwnedBy(User user) {
var list = new ArrayList<String>();
try {
var rs = Database.open()