summaryrefslogtreecommitdiff
path: root/app/helpers/compare_helper.rb
blob: 9ece8b0bc5bb81d294c130fce51d614238f08ac5 (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,
        target_branch: from
      }
    )
  end
end