summaryrefslogtreecommitdiff
path: root/app/views/profiles/notifications/_group_settings.html.haml
blob: b1578886098edb98406a6e64fdeb1c6f367935de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- emails_disabled = group.emails_disabled?

.gl-responsive-table-row.notification-list-item
  .table-section.section-40
    %span.notification.gl-mr-2
      = notification_icon(notification_icon_level(setting, emails_disabled))

    %span.str-truncated
      = link_to group.name, group_path(group)

  .table-section.section-30.text-right
    = render 'shared/notifications/button', notification_setting: setting, emails_disabled: emails_disabled

  .table-section.section-30
    = form_for setting, url: profile_notifications_group_path(group), method: :put, html: { class: 'update-notifications gl-display-flex' } do |f|
      = f.select :notification_email, @user.public_verified_emails, { include_blank: 'Global notification email' }, class: 'select2 js-group-notification-email'