Add media management

This commit is contained in:
2023-05-07 20:47:42 +10:00
parent 067eb3f848
commit 31beb9cbc6
7 changed files with 60 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
module Admin
module Actions
module Photos
class Index < Action
include Deps["views.photos.index"]
def handle(req, res)
res.render index
end
end
end
end
end