summaryrefslogtreecommitdiff
path: root/app/views/projects/protected_tags/shared/_index.html.haml
blob: aab4d366605b24300d289f268ab103b69c878b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- expanded = expanded_by_default?

%section.settings.no-animate#js-protected-tags-settings{ class: ('expanded' if expanded), data: { qa_selector: 'protected_tag_settings_content' } }
  .settings-header
    %h4.settings-title.js-settings-toggle.js-settings-toggle-trigger-only
      Protected tags
    %button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
      = expanded ? 'Collapse' : 'Expand'
    %p
      Limit access to creating and updating tags. #{link_to "What are protected tags?", help_page_path("user/project/protected_tags")}
  .settings-content
    %p
      By default, protected tags protect your code and:
      %ul
        %li Allow only users with Maintainer #{link_to "permissions", help_page_path("user/permissions")} to create tags.
        %li Prevent <strong>anyone</strong> from updating tags.
        %li Prevent <strong>anyone</strong> from deleting tags.

    - if can? current_user, :admin_project, @project
      = yield :create_protected_tag

    = yield :tag_list