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

_create_protected_branch.html.haml « protected_branches « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34fe9a29068be36ee59b7af84f6e1e6fc6056c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- content_for :merge_access_levels do
  .merge_access_levels-container
    = dropdown_tag('Select',
                    options: { toggle_class: 'js-allowed-to-merge wide',
                    dropdown_class: 'dropdown-menu-selectable capitalize-header', dropdown_qa_selector: 'allowed_to_merge_dropdown_content', dropdown_testid: 'allowed-to-merge-dropdown',
                    data: { field_name: 'protected_branch[merge_access_levels_attributes][0][access_level]', input_id: 'merge_access_levels_attributes', qa_selector: 'allowed_to_merge_dropdown' }})
- content_for :push_access_levels do
  .push_access_levels-container
    = dropdown_tag('Select',
                    options: { toggle_class: "js-allowed-to-push js-multiselect wide",
                    dropdown_class: 'dropdown-menu-selectable capitalize-header', dropdown_qa_selector: 'allowed_to_push_dropdown_content' , dropdown_testid: 'allowed-to-push-dropdown',
                    data: { field_name: 'protected_branch[push_access_levels_attributes][0][access_level]', input_id: 'push_access_levels_attributes', qa_selector: 'allowed_to_push_dropdown' }})

= render 'projects/protected_branches/shared/create_protected_branch'