Files
nairobi/app/helpers/notifications_helper.rb
2016-06-07 22:03:14 +02:00

14 lines
253 B
Ruby

module NotificationsHelper
def notification_action(notification)
case notification.notifiable_type
when "ProposalNotification"
"proposal_notification"
when "Comment"
"replies_to"
else
"comments_on"
end
end
end