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

_contribution.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: a78231b37ce5229700dfa5ad7c58a07237e0555b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- issuable = local_assigns.fetch(:issuable)
- form = local_assigns.fetch(:form)

- return unless issuable.is_a?(MergeRequest)
- return unless issuable.for_fork?
- return unless can?(current_user, :push_code, issuable.source_project)

%hr

.form-group.row
  %label.col-form-label.col-sm-2
    = _('Contribution')
  .col-sm-10
    .form-check.prepend-top-5
      = form.check_box :allow_collaboration, disabled: !issuable.can_allow_collaboration?(current_user), class: 'form-check-input'
      = form.label :allow_collaboration, class: 'form-check-label' do
        = _('Allow commits from members who can merge to the target branch.')
        = link_to 'About this feature', help_page_path('user/project/merge_requests/allow_collaboration'), target: '_blank', rel: 'noopener noreferrer nofollow'
        .form-text.text-muted
          = allow_collaboration_unavailable_reason(issuable)