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

_protected_branch.html.haml « shared « protected_branches « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 098bd4a7eebf76fa30fc19c9c674c84e3566f0e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- can_admin_project = can?(current_user, :admin_project, @project)

%tr.js-protected-branch-edit-form{ data: { url: namespace_project_protected_branch_path(@project.namespace, @project, protected_branch), testid: 'protected-branch' } }
  %td
    %span.ref-name= protected_branch.name

    - if @project.root_ref?(protected_branch.name)
      = gl_badge_tag s_('ProtectedBranch|default'), variant: :info

    %div
      - if protected_branch.wildcard?
        - matching_branches = protected_branch.matching(repository.branch_names)
        = link_to pluralize(matching_branches.count, "matching branch"), namespace_project_protected_branch_path(@project.namespace, @project, protected_branch)
      - elsif !protected_branch.commit
        %span.text-muted Branch was deleted.

  = yield

  = render_if_exists 'projects/protected_branches/ee/code_owner_approval_table', protected_branch: protected_branch

  - if can_admin_project
    %td
      = link_to s_('ProtectedBranch|Unprotect'), [@project, protected_branch, { update_section: 'js-protected-branches-settings' }], disabled: local_assigns[:disabled], aria: { label: s_('ProtectedBranch|Unprotect branch') }, data: { confirm: s_('ProtectedBranch|Branch will be writable for developers. Are you sure?'), confirm_btn_variant: 'danger' }, method: :delete, class: "btn gl-button btn-danger btn-sm"