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
3cefa9ea
Commit
3cefa9ea
authored
Mar 26, 2018
by
James Edwards-Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ProtectedBranch API omits empty declared params
parent
f6eeb135
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
lib/api/protected_branches.rb
lib/api/protected_branches.rb
+2
-1
No files found.
lib/api/protected_branches.rb
View file @
3cefa9ea
...
...
@@ -52,7 +52,8 @@ module API
conflict!
(
"Protected branch '
#{
params
[
:name
]
}
' already exists"
)
end
api_service
=
::
ProtectedBranches
::
ApiService
.
new
(
user_project
,
current_user
,
declared
(
params
))
declared_params
=
declared_params
(
include_missing:
false
)
api_service
=
::
ProtectedBranches
::
ApiService
.
new
(
user_project
,
current_user
,
declared_params
)
protected_branch
=
api_service
.
create
if
protected_branch
.
persisted?
...
...
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