Admin post management

This commit is contained in:
2023-05-07 17:28:45 +10:00
parent 4fb1b2b166
commit d679ea1947
8 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
module Admin
module Views
module Posts
class Index < Admin::View
include Deps["repos.post_repo"]
expose :posts do
post_repo.list
end
end
end
end
end