File: _contribution.html.haml

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (18 lines) | stat: -rw-r--r-- 931 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- issuable = local_assigns.fetch(:issuable)
- form = local_assigns.fetch(:form)
- contribution_help_link = help_page_path('user/project/merge_requests/allow_collaboration.md')
- contribution_help_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: contribution_help_link }

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

%hr

.form-group
  %label
    = _('Contribution')
  = form.gitlab_ui_checkbox_component :allow_collaboration,
    _('Allow commits from members who can merge to the target branch. %{link_start}About this feature.%{link_end}').html_safe % { link_start: contribution_help_link_start, link_end: '</a>'.html_safe },
    checkbox_options: { disabled: !issuable.can_allow_collaboration?(current_user) },
    help_text: allow_collaboration_unavailable_reason(issuable)