14 lines
250 B
Ruby
14 lines
250 B
Ruby
module Main
|
|
module Actions
|
|
module Bookmarks
|
|
class Metadata < Action
|
|
include Deps["views.bookmarks.metadata"]
|
|
|
|
def handle(req, res)
|
|
res.render metadata, id: req.params[:id]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|