Files
nairobi/app/helpers/notifications_helper.rb
2016-01-07 12:02:01 +01:00

12 lines
296 B
Ruby

module NotificationsHelper
def notification_action(notification)
notification.notifiable.reply? ? "replied_to_your_comment" : "commented_on_your_debate"
end
def notifications_class_for(user)
user.notifications.count > 0 ? "with_notifications" : "without_notifications"
end
end