Skip to content
Snippets Groups Projects
Commit b4359fb2 authored by Rémy Coutable's avatar Rémy Coutable
Browse files

Don't use Hash#slice since it's not supported in Ruby 2.1


Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent de12e6f0
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -67,9 +67,14 @@ module API
pipeline = @project.ensure_pipeline(ref, commit.sha, current_user)
 
status = GenericCommitStatus.running_or_pending.find_or_initialize_by(
project: @project, pipeline: pipeline,
user: current_user, name: name, ref: ref)
status.attributes = declared(params).slice(:target_url, :description)
project: @project,
pipeline: pipeline,
user: current_user,
name: name,
ref: ref,
target_url: params[:target_url],
description: params[:description]
)
 
begin
case params[:state].to_s
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment