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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/branches/_delete_branch_modal_button.html.haml')
-rw-r--r--app/views/projects/branches/_delete_branch_modal_button.html.haml18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/views/projects/branches/_delete_branch_modal_button.html.haml b/app/views/projects/branches/_delete_branch_modal_button.html.haml
deleted file mode 100644
index 829a459ad2c..00000000000
--- a/app/views/projects/branches/_delete_branch_modal_button.html.haml
+++ /dev/null
@@ -1,18 +0,0 @@
-- if branch.name == @project.repository.root_ref
- .js-delete-branch-button{ data: { tooltip: s_('Branches|The default branch cannot be deleted'),
- disabled: true.to_s } }
-- elsif protected_branch?(@project, branch)
- - if can?(current_user, :push_to_delete_protected_branch, @project)
- .js-delete-branch-button{ data: { branch_name: branch.name,
- is_protected_branch: true.to_s,
- merged: merged.to_s,
- default_branch_name: @project.repository.root_ref,
- delete_path: project_branch_path(@project, branch.name) } }
- - else
- .js-delete-branch-button{ data: { is_protected_branch: true.to_s,
- disabled: true.to_s } }
-- else
- .js-delete-branch-button{ data: { branch_name: branch.name,
- merged: merged.to_s,
- default_branch_name: @project.repository.root_ref,
- delete_path: project_branch_path(@project, branch.name) } }