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,15 @@
# frozen_string_literal: true
module Admin
module Views
module Webmentions
class Index < Admin::View
include Deps["repos.webmention_repo"]
expose :webmentions do
webmention_repo.list_all
end
end
end
end
end