Files
adamantium/app/actions/bookmarks/index.rb
2023-01-27 22:55:09 +11:00

14 lines
249 B
Ruby

module Adamantium
module Actions
module Bookmarks
class Index < Action
include Deps["views.bookmarks.index"]
def handle(req, res)
res.render index, query: req.params[:q]
end
end
end
end
end