summaryrefslogtreecommitdiff
path: root/app/helpers/compare_helper.rb
blob: 57e397f6ca012b71fb5424ea65526c62cad25b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module CompareHelper
  def create_mr_button?(from = params[:from], to = params[:to], project = @project)
    from.present? &&
      to.present? &&
      from != to &&
      can?(current_user, :create_merge_request_from, project) &&
      project.repository.branch_exists?(from) &&
      project.repository.branch_exists?(to)
  end

  def create_mr_path(from = params[:from], to = params[:to], project = @project)
    project_new_merge_request_path(
      project,
      merge_request_source_branch: to,
      merge_request: {
        target_branch: from
      }
    )
  end
end