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

_merge_params.html.haml « form « issuable « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03309722326a8fed78599be1b94f9e97d9a372ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- issuable = local_assigns.fetch(:issuable)

- return unless issuable.is_a?(MergeRequest)
- return if issuable.closed_without_fork?

-# This check is duplicated below, to avoid conflicts with EE.
- return unless issuable.can_remove_source_branch?(current_user)

.form-group
  .col-sm-10.col-sm-offset-2
    - if issuable.can_remove_source_branch?(current_user)
      .checkbox
        = label_tag 'merge_request[force_remove_source_branch]' do
          = hidden_field_tag 'merge_request[force_remove_source_branch]', '0', id: nil
          = check_box_tag 'merge_request[force_remove_source_branch]', '1', issuable.force_remove_source_branch?
          Remove source branch when merge request is accepted.