implemented restoring of wiki tags from tag and bookmark database

This commit is contained in:
2025-09-12 01:56:28 +02:00
parent f13da92b48
commit 4bc717756f
9 changed files with 74 additions and 5 deletions

View File

@@ -7,7 +7,9 @@ import java.util.Collection;
import java.util.Map;
public interface BookmarkDb {
Map<Long, Bookmark> find(long userId, Collection<String> key);
Map<Long, Bookmark> findUrls(long userId, Collection<String> key);
Map<Long, String> findUrls(String key);
Map<Long, Bookmark> list(long userId, Long offset, Long limit);