1 # frozen_string_literal: true
3 module NotificationsHelper
4 def partial_path_for_notification(notification)
5 # Turn "ChangesetCommentNotifier::Notification" into "ChangesetComment"
6 event_type_name = notification.class.name.sub("Notifier::Notification", "")
8 "notifications/#{event_type_name.underscore}"