14 lines
243 B
Ruby
14 lines
243 B
Ruby
module Main
|
|
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
|