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
b4359fb2
Commit
b4359fb2
authored
Oct 20, 2016
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't use Hash#slice since it's not supported in Ruby 2.1
Signed-off-by:
Rémy Coutable
<
remy@rymai.me
>
parent
de12e6f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
lib/api/commit_statuses.rb
lib/api/commit_statuses.rb
+8
-3
No files found.
lib/api/commit_statuses.rb
View file @
b4359fb2
...
@@ -67,9 +67,14 @@ module API
...
@@ -67,9 +67,14 @@ module API
pipeline
=
@project
.
ensure_pipeline
(
ref
,
commit
.
sha
,
current_user
)
pipeline
=
@project
.
ensure_pipeline
(
ref
,
commit
.
sha
,
current_user
)
status
=
GenericCommitStatus
.
running_or_pending
.
find_or_initialize_by
(
status
=
GenericCommitStatus
.
running_or_pending
.
find_or_initialize_by
(
project:
@project
,
pipeline:
pipeline
,
project:
@project
,
user:
current_user
,
name:
name
,
ref:
ref
)
pipeline:
pipeline
,
status
.
attributes
=
declared
(
params
).
slice
(
:target_url
,
:description
)
user:
current_user
,
name:
name
,
ref:
ref
,
target_url:
params
[
:target_url
],
description:
params
[
:description
]
)
begin
begin
case
params
[
:state
].
to_s
case
params
[
:state
].
to_s
...
...
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