from or to get variables gets preserved if the other one is missing
This commit is contained in:
parent
241e2e875b
commit
0413a7ad03
1 changed files with 9 additions and 2 deletions
|
@ -27,8 +27,8 @@ class Projects::CompareController < Projects::ApplicationController
|
|||
def create
|
||||
if params[:from].blank? || params[:to].blank?
|
||||
flash[:alert] = "You must select from and to branches"
|
||||
byebug
|
||||
redirect_to namespace_project_compare_index_path
|
||||
from_to_preservation = from_to_hash(params)
|
||||
redirect_to namespace_project_compare_index_path(@project.namespace, @project, from_to_preservation)
|
||||
else
|
||||
redirect_to namespace_project_compare_path(@project.namespace, @project,
|
||||
params[:from], params[:to])
|
||||
|
@ -62,4 +62,11 @@ class Projects::CompareController < Projects::ApplicationController
|
|||
@merge_request ||= MergeRequestsFinder.new(current_user, project_id: @project.id).execute.opened.
|
||||
find_by(source_project: @project, source_branch: @head_ref, target_branch: @start_ref)
|
||||
end
|
||||
|
||||
def from_to_hash(params)
|
||||
return_hash = {}
|
||||
return_hash[:from] = params[:from].presence
|
||||
return_hash[:to] = params[:to].presence
|
||||
return_hash
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue