debian-mirror-gitlab/app/views/profiles/notifications/_group_settings.html.haml

21 lines
1.1 KiB
Text
Raw Normal View History

2019-10-12 21:52:04 +05:30
- emails_disabled = group.emails_disabled?
2019-09-04 21:01:54 +05:30
.gl-responsive-table-row.notification-list-item
.table-section.section-40
2020-11-24 15:15:51 +05:30
%span.notification.gl-mr-2
2019-10-12 21:52:04 +05:30
= notification_icon(notification_icon_level(setting, emails_disabled))
2016-06-02 11:05:42 +05:30
2019-09-04 21:01:54 +05:30
%span.str-truncated
= link_to group.name, group_path(group)
2016-06-02 11:05:42 +05:30
2019-09-04 21:01:54 +05:30
.table-section.section-30.text-right
2021-03-11 19:13:27 +05:30
- if Feature.enabled?(:vue_notification_dropdown, default_enabled: :yaml)
- if setting
.js-vue-notification-dropdown{ data: { disabled: emails_disabled, dropdown_items: notification_dropdown_items(setting).to_json, notification_level: setting.level, group_id: group.id, container_class: 'gl-mr-3', show_label: "true" } }
- else
= render 'shared/notifications/button', notification_setting: setting, emails_disabled: emails_disabled
2019-09-04 21:01:54 +05:30
.table-section.section-30
2021-02-22 17:27:13 +05:30
= form_for setting, url: profile_notifications_group_path(group), method: :put, html: { class: 'update-notifications gl-display-flex' } do |f|
2020-05-30 21:06:31 +05:30
= f.select :notification_email, @user.public_verified_emails, { include_blank: 'Global notification email' }, class: 'select2 js-group-notification-email'