Files
adamantium/slices/admin/actions/bookmarks/publish.rb

16 lines
284 B
Ruby

module Admin
module Actions
module Bookmarks
class Publish < Action
include Deps["repos.bookmark_repo"]
def handle(req, res)
bookmark_id = req.params[:id]
bookmark_repo.publish(id: bookmark_id)
end
end
end
end
end