Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
1e743a1d
Commit
1e743a1d
authored
Jun 21, 2017
by
Nick Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport changes to Projects::MergeRequestsController for gitlab-org/gitlab-ee!2200
parent
0551364c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
app/controllers/projects/merge_requests_controller.rb
app/controllers/projects/merge_requests_controller.rb
+7
-3
No files found.
app/controllers/projects/merge_requests_controller.rb
View file @
1e743a1d
...
...
@@ -579,10 +579,10 @@ class Projects::MergeRequestsController < Projects::ApplicationController
def
merge_request_params
params
.
require
(
:merge_request
)
.
permit
(
merge_request_params_
ce
)
.
permit
(
merge_request_params_
attributes
)
end
def
merge_request_params_
ce
def
merge_request_params_
attributes
[
:assignee_id
,
:description
,
...
...
@@ -602,7 +602,11 @@ class Projects::MergeRequestsController < Projects::ApplicationController
end
def
merge_params
params
.
permit
(
:should_remove_source_branch
,
:commit_message
)
params
.
permit
(
merge_params_attributes
)
end
def
merge_params_attributes
[
:should_remove_source_branch
,
:commit_message
]
end
# Make sure merge requests created before 8.0
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment