Add management of webmentions

This commit is contained in:
2024-01-26 11:43:19 +11:00
parent 9dad3d88ce
commit fa031d880b
10 changed files with 110 additions and 4 deletions

View File

@@ -68,5 +68,8 @@ module Admin
get "/books", to: Auth.call(action: "books.index")
patch "/books/:id", to: Auth.call(action: "books.update")
post "/books", to: Auth.call(action: "books.create")
get "/webmentions", to: Auth.call(action: "webmentions.index")
patch "/webmentions/:id/:update_type", to: Auth.call(action: "webmentions.update")
end
end