summaryrefslogtreecommitdiff
path: root/lib/api/triggers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/triggers.rb')
-rw-r--r--lib/api/triggers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/triggers.rb b/lib/api/triggers.rb
index 55528101f15..280fe72ae47 100644
--- a/lib/api/triggers.rb
+++ b/lib/api/triggers.rb
@@ -28,7 +28,7 @@ module API
# create request and trigger builds
result = Ci::CreateTriggerRequestService.execute(project, trigger, params[:ref].to_s, variables)
- pipeline = result[:pipeline]
+ pipeline = result.pipeline
if pipeline.persisted?
present pipeline, with: Entities::Pipeline