Add reminder about unread bookmarks

This commit is contained in:
2024-02-23 08:31:12 +11:00
parent a8f74b1e04
commit 6978a3dfc6
8 changed files with 110 additions and 1 deletions

View File

@@ -42,6 +42,8 @@ module Admin
post "/bookmarks/cache/:id", to: Auth.call(action: "bookmarks.cache")
post "/bookmarks/:id/archive", to: Auth.call(action: "bookmarks.archive")
post "/bookmarks/:id/publish", to: Auth.call(action: "bookmarks.publish")
post "/bookmarks/:id/mark_read", to: Auth.call(action: "bookmarks.mark_read")
post "/bookmarks/:id/mark_unread", to: Auth.call(action: "bookmarks.mark_unread")
get "/posts", to: Auth.call(action: "posts.index")
delete "/posts/:id", to: Auth.call(action: "posts.delete")