mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-15 15:46:08 +10:00
Implement custom notification level options   part of #12758 See merge request !4389
14 lines
893 B
Plaintext
14 lines
893 B
Plaintext
- left_align = local_assigns[:left_align]
|
|
%ul.dropdown-menu.dropdown-menu-no-wrap.dropdown-menu-selectable.dropdown-menu-large{ role: "menu", class: [notifications_menu_identifier("dropdown", notification_setting), ("dropdown-menu-align-right" unless left_align)] }
|
|
- NotificationSetting.levels.each_key do |level|
|
|
- next if level == "custom"
|
|
- next if level == "global" && notification_setting.source.nil?
|
|
|
|
= notification_list_item(level, notification_setting)
|
|
|
|
%li.divider
|
|
%li
|
|
%a.update-notification{ href: "#", role: "button", class: ("is-active" if notification_setting.custom?), data: { toggle: "modal", target: "#" + notifications_menu_identifier("modal", notification_setting), notification_level: "custom", notification_title: "Custom" } }
|
|
%strong.dropdown-menu-inner-title Custom
|
|
%span.dropdown-menu-inner-content= notification_description("custom")
|