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

@@ -0,0 +1,13 @@
module Admin
module Repos
class WebmentionRepo < Adamantium::Repo[:webmentions]
commands update: :by_pk
def list_all
webmentions
.order(:id)
.to_a
end
end
end
end