Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/notifications_helper.rb')
-rw-r--r--app/helpers/notifications_helper.rb36
1 files changed, 0 insertions, 36 deletions
diff --git a/app/helpers/notifications_helper.rb b/app/helpers/notifications_helper.rb
index ddaef4652b4..b6e435986ce 100644
--- a/app/helpers/notifications_helper.rb
+++ b/app/helpers/notifications_helper.rb
@@ -35,42 +35,6 @@ module NotificationsHelper
sprite_icon(icon)
end
- def notification_title(level)
- # Can be anything in `NotificationSetting.level:
- case level.to_sym
- when :participating
- s_('NotificationLevel|Participate')
- when :mention
- s_('NotificationLevel|On mention')
- else
- N_('NotificationLevel|Global')
- N_('NotificationLevel|Watch')
- N_('NotificationLevel|Disabled')
- N_('NotificationLevel|Custom')
- level = "NotificationLevel|#{level.to_s.humanize}"
- s_(level)
- end
- end
-
- def notification_description(level)
- case level.to_sym
- when :participating
- _('You will only receive notifications for threads you have participated in')
- when :mention
- _('You will receive notifications only for comments in which you were @mentioned')
- when :watch
- _('You will receive notifications for any activity')
- when :disabled
- _('You will not get any notifications via email')
- when :global
- _('Use your global notification setting')
- when :custom
- _('You will only receive notifications for the events you choose')
- when :owner_disabled
- _('Notifications have been disabled by the project or group owner')
- end
- end
-
def show_unsubscribe_title?(noteable)
can?(current_user, "read_#{noteable.to_ability_name}".to_sym, noteable)
end