-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bookmarks (searches and documents) #72
Comments
(I think I will start with the bookmarks feature as this is simpler implementation-wise compared with #52) A bookmark is an entity where the following information is deemed relevant: {:db/ident ident
:bookmark/path path
:entity/visibility visibility ; e.g. :public
:bookmark/added date} Bookmarks need to be persisted, i.e. we will probably need to combine a persisted graph with the in-memory one using asami wrapgraph. The persisted graph should exist in a Docker volume, probably somewhere on disk that gets backed up by KU-IT. In time, it may be beneficial to view the bookmarks of other users or dynamically compile a list of popular bookmarks. The |
For this purpose, it will be optimal to query/transact to the separate persisted graph directly, since it only interfaces with paths rather than actual document data. |
Nice-to-have stuff that is (as of now) still TODO:
|
Optimistic frontend changes implemented in 242172e |
Another nice-to-have documented in #83 |
It would be a valuable addition to allow storing searches and specific documents as bookmarks, easily accessible by the user. Obviously, this feature requires persistence, so it needs to use the same datastore as the user comments #52.
The text was updated successfully, but these errors were encountered: