Files
adamantium/app/actions/recently_played/index.rb

13 lines
236 B
Ruby

module Adamantium
module Actions
module RecentlyPlayed
class Index < Action
include Deps["views.recently_played.index"]
def handle(req, res)
res.render index
end
end
end
end
end