7 lines
155 B
Ruby
7 lines
155 B
Ruby
module NotificationsHelper
|
|
|
|
def notification_action(notification)
|
|
notification.notifiable_type == "Comment" ? "replies_to" : "comments_on"
|
|
end
|
|
end
|