From adb28b30dab47bd3a58eae697d40e4aa346ea2c8 Mon Sep 17 00:00:00 2001 From: Sean Edge Date: Thu, 5 Feb 2015 07:57:46 -0500 Subject: [PATCH] Update create_merge_request doc to include :target_project_id parameter. Closes #108. --- lib/gitlab/client/merge_requests.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/gitlab/client/merge_requests.rb b/lib/gitlab/client/merge_requests.rb index 88bf99ccc..9f4ca260a 100644 --- a/lib/gitlab/client/merge_requests.rb +++ b/lib/gitlab/client/merge_requests.rb @@ -42,6 +42,7 @@ def merge_request(project, id) # @option options [String] :source_branch (required) The source branch name. # @option options [String] :target_branch (required) The target branch name. # @option options [Integer] :assignee_id (optional) The ID of a user to assign merge request. + # @option options [Integer] :target_project_id (optional) The target project ID. # @return [Gitlab::ObjectifiedHash] Information about created merge request. def create_merge_request(project, title, options={}) check_attributes!(options, [:source_branch, :target_branch])