2016-04-21 10:34:00 -04:00
|
|
|
- if can?(current_user, :push_code, @project)
|
2017-05-04 04:09:21 -04:00
|
|
|
.create-mr-dropdown-wrap{ data: { can_create_path: can_create_branch_namespace_project_issue_path(@project.namespace, @project, @issue), create_mr_path: create_merge_request_namespace_project_issue_path(@project.namespace, @project, @issue), create_branch_path: namespace_project_branches_path(@project.namespace, @project, branch_name: @issue.to_branch_name, issue_iid: @issue.iid) } }
|
|
|
|
.btn-group.unavailable
|
|
|
|
%button.btn.btn-grouped{ type: 'button', disabled: 'disabled' }
|
|
|
|
= icon('spinner', class: 'fa-spin')
|
|
|
|
%span.text
|
|
|
|
Checking branch availability…
|
|
|
|
.btn-group.available.hide
|
|
|
|
%input.btn.js-create-merge-request.btn-inverted.btn-success{ type: 'button', value: 'Create a merge request', data: { action: 'create-mr' } }
|
|
|
|
%button.btn.btn-inverted.dropdown-toggle.btn-inverted.btn-success.js-dropdown-toggle{ type: 'button', data: { 'dropdown-trigger' => '#create-merge-request-dropdown' } }
|
|
|
|
= icon('caret-down')
|
|
|
|
%ul#create-merge-request-dropdown.dropdown-menu.dropdown-menu-align-right{ data: { dropdown: true } }
|
|
|
|
%li.droplab-item-selected{ role: 'button', data: { value: 'create-mr', 'text' => 'Create a merge request' } }
|
|
|
|
.menu-item
|
|
|
|
.icon-container
|
|
|
|
= icon('check')
|
|
|
|
.description
|
|
|
|
%strong Create a merge request
|
|
|
|
%span
|
|
|
|
Creates a branch named after this issue and a merge request. The source branch is '#{@project.default_branch}' by default.
|
|
|
|
%li.divider.droplab-item-ignore
|
|
|
|
%li{ role: 'button', data: { value: 'create-branch', 'text' => 'Create a branch' } }
|
|
|
|
.menu-item
|
|
|
|
.icon-container
|
|
|
|
= icon('check')
|
|
|
|
.description
|
|
|
|
%strong Create a branch
|
|
|
|
%span
|
|
|
|
Creates a branch named after this issue. The source branch is '#{@project.default_branch}' by default.
|