Files
adamantium/app/actions/photos/index.rb
2023-02-25 14:11:34 +11:00

14 lines
220 B
Ruby

module Adamantium
module Actions
module Photos
class Index < Action
include Deps["views.photos.index"]
def handle(req, res)
res.render index
end
end
end
end
end