Files
adamantium/app/views/posts/top_tracks.rb
2023-06-12 16:48:37 +10:00

22 lines
352 B
Ruby

module Adamantium
module Views
module Posts
class TopTracks < Adamantium::View
config.layout = false
expose :name do |track:|
track.name
end
expose :artist do |track:|
track.artist
end
expose :url do |track:|
track.url
end
end
end
end
end