Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/ci/pipeline_schedules.rb')
-rw-r--r--lib/api/ci/pipeline_schedules.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/api/ci/pipeline_schedules.rb b/lib/api/ci/pipeline_schedules.rb
index afb3754f2ae..e27ec24fb44 100644
--- a/lib/api/ci/pipeline_schedules.rb
+++ b/lib/api/ci/pipeline_schedules.rb
@@ -141,9 +141,12 @@ module API
requires :pipeline_schedule_id, type: Integer, desc: 'The pipeline schedule id', documentation: { example: 13 }
end
post ':id/pipeline_schedules/:pipeline_schedule_id/take_ownership' do
- authorize! :take_ownership_pipeline_schedule, pipeline_schedule
+ authorize! :admin_pipeline_schedule, pipeline_schedule
- if pipeline_schedule.own!(current_user)
+ if pipeline_schedule.owned_by?(current_user)
+ status(:ok) # Set response code to 200 if schedule is already owned by current user
+ present pipeline_schedule, with: Entities::Ci::PipelineScheduleDetails
+ elsif pipeline_schedule.own!(current_user)
present pipeline_schedule, with: Entities::Ci::PipelineScheduleDetails
else
render_validation_error!(pipeline_schedule)