13 lines
241 B
Ruby
13 lines
241 B
Ruby
module Main
|
|
module Actions
|
|
module Bookmarks
|
|
class Show < Action
|
|
include Deps["views.bookmarks.show"]
|
|
def handle(req, res)
|
|
res.render show, slug: req.params[:slug]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|