Method: VotesHelper#votable_link

Defined in:
app/helpers/votes_helper.rb

Parameters:



15
16
17
18
19
20
21
22
23
# File 'app/helpers/votes_helper.rb', line 15

def votable_link(entity)
  text = entity.model_name.human
  path = '#'
  if entity.is_a?(Comment)
    text += " #{entity.commentable.title}"
    path = entity.commentable
  end
  link_to(text, path)
end