Files
nairobi/app/helpers/mailer_helper.rb
2015-09-24 12:38:21 +02:00

8 lines
198 B
Ruby

module MailerHelper
def commentable_url(commentable)
return debate_url(commentable) if commentable.is_a?(Debate)
return proposal_url(commentable) if commentable.is_a?(Proposal)
end
end