Files
adamantium/slices/main/views/posts/top_tracks.rb
2024-02-21 21:48:44 +11:00

22 lines
340 B
Ruby

module Main
module Views
module Posts
class TopTracks < Main::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