Class: Play::Views::ShowSong

Inherits:
Layout
  • Object
show all
Defined in:
lib/play/views/show_song.rb

Instance Method Summary collapse

Methods inherited from Layout

#login

Instance Method Details

#playsObject



14
15
16
# File 'lib/play/views/show_song.rb', line 14

def plays
  @song.votes.count
end

#titleObject



4
5
6
# File 'lib/play/views/show_song.rb', line 4

def title
  "#{@song.title} by #{@song.artist.name}"
end

#usersObject



8
9
10
11
12
# File 'lib/play/views/show_song.rb', line 8

def users
  @song.votes.group(:user_id).collect do |vote|
    vote.user
  end
end