summaryrefslogtreecommitdiff
path: root/app/views/shared/issuable/form/_contribution.html.haml
blob: de508278d7c8093ec5e27f10d338b44ed2038a88 (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
  .control-label
    = _('Contribution')
  .col-sm-10
    .checkbox
      = form.label :allow_maintainer_to_push do
        = form.check_box :allow_maintainer_to_push, disabled: !issuable.can_allow_maintainer_to_push?(current_user)
        = _('Allow edits from maintainers.')
        = link_to 'About this feature', help_page_path('user/project/merge_requests/maintainer_access')
        .help-block
          = allow_maintainer_push_unavailable_reason(issuable)