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

_index.html.haml « shared « protected_tags « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c07bd454ff655236becc830ddfd718ed6347b92d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
- expanded = Rails.env.test?

%section.settings
  .settings-header
    %h4
      Protected Tags
    %button.btn.js-settings-toggle
      = expanded ? 'Collapse' : 'Expand'
    %p
      Limit access to creating and updating tags.
  .settings-content.no-animate{ class: ('expanded' if expanded) }
    %p
      By default, protected tags are designed to:
      %ul
        %li Prevent tag creation by everybody except Masters
        %li Prevent <strong>anyone</strong> from updating the tag
        %li Prevent <strong>anyone</strong> from deleting the tag

    %p Read more about #{link_to "protected tags", help_page_path("user/project/protected_tags"), class: "underlined-link"}.

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

    = yield :tag_list