修改pull request发送源项目提示

This commit is contained in:
daiao 2016-11-24 10:11:59 +08:00
parent 5ed9d169f3
commit 980ae78185
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ class PullRequestsController < ApplicationController
if params[:target_project_id]
target_project_id = params[:forked_project_id].to_i
request = @g.create_merge_request(@project.gpid, title, User.current.gid, :description => description, :source_branch => source_branch, :target_branch => target_branch, :target_project_id => target_project_id)
@fork_project_name = Project.find(target_project_id).try(:name)
@fork_project_name = Project.find(params[:target_project_id]).try(:name)
@fork_pr_message = true if @fork_project_name
else
request = @g.create_merge_request(@project.gpid, title, User.current.gid, :description => description, :source_branch => source_branch, :target_branch => target_branch)