Files
grecia/app/helpers/mailer_helper.rb
2017-01-10 22:24:00 +01:00

9 lines
308 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)
return budget_investment_url(commentable.budget_id, commentable) if commentable.is_a?(Budget::Investment)
end
end