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

index.html.haml « protected_branches « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4efe44c72335db454cd746936acc6c543b317d11 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
- page_title "Protected branches"

.row.prepend-top-default.append-bottom-default
  .col-lg-3
    %h4.prepend-top-0
      = page_title
    %p Keep stable branches secure and force developers to use merge requests.
    %p.prepend-top-20
      By default, protected branches are designed to:
      %ul
        %li prevent their creation, if not already created, from everybody except Masters
        %li prevent pushes from everybody except Masters
        %li prevent <strong>anyone</strong> from force pushing to the branch
        %li prevent <strong>anyone</strong> from deleting the branch
      %p.append-bottom-0 Read more about #{link_to "protected branches", help_page_path("user/project/protected_branches"), class: "underlined-link"} and #{link_to "project permissions", help_page_path("user/permissions"), class: "underlined-link"}.
  .col-lg-9
    %h5.prepend-top-0
      Protect a branch
    - if can? current_user, :admin_project, @project
      = form_for [@project.namespace.becomes(Namespace), @project, @protected_branch] do |f|
        = form_errors(@protected_branch)

        .form-group
          = f.label :name, "Branch", class: "label-light"
          = render partial: "dropdown", locals: { f: f }
          %p.help-block
            = link_to "Wildcards", help_page_path('user/project/protected_branches', anchor: "wildcard-protected-branches")
            such as
            %code *-stable
            or
            %code production/*
            are supported.

        .form-group
          = hidden_field_tag 'protected_branch[merge_access_level_attributes][access_level]'
          = label_tag "Allowed to merge: ", nil, class: "label-light append-bottom-0"
          = dropdown_tag("<Make a selection>",
                         options: { title: "Allowed to merge", toggle_class: 'allowed-to-merge',
                                    dropdown_class: 'dropdown-menu-selectable',
                                    data: { field_name: "protected_branch[merge_access_level_attributes][access_level]" }})

        .form-group
          = hidden_field_tag 'protected_branch[push_access_level_attributes][access_level]'
          = label_tag "Allowed to push: ", nil, class: "label-light append-bottom-0"
          = dropdown_tag("<Make a selection>",
                         options: { title: "Allowed to push", toggle_class: 'allowed-to-push',
                                    dropdown_class: 'dropdown-menu-selectable',
                                    data: { field_name: "protected_branch[push_access_level_attributes][access_level]" }})


        = f.submit "Protect", class: "btn-create btn protect-branch-btn", disabled: true

    %hr
    = render "branches_list"