Class: Ci::RefDeleteUnlockArtifactsWorker
- Inherits:
-
Object
- Object
- Ci::RefDeleteUnlockArtifactsWorker
- Includes:
- ApplicationWorker, PipelineBackgroundQueue
- Defined in:
- app/workers/ci/ref_delete_unlock_artifacts_worker.rb
Constant Summary
Constants included from ApplicationWorker
ApplicationWorker::LOGGING_EXTRA_KEY
Constants included from WorkerAttributes
WorkerAttributes::NAMESPACE_WEIGHTS, WorkerAttributes::VALID_RESOURCE_BOUNDARIES, WorkerAttributes::VALID_URGENCIES
Instance Method Summary collapse
Methods included from Gitlab::SidekiqVersioning::Worker
Methods included from WorkerContext
Instance Method Details
#perform(project_id, user_id, ref_path) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 |
# File 'app/workers/ci/ref_delete_unlock_artifacts_worker.rb', line 10 def perform(project_id, user_id, ref_path) ::Project.find_by_id(project_id).try do |project| ::User.find_by_id(user_id).try do |user| project.ci_refs.find_by_ref_path(ref_path).try do |ci_ref| ::Ci::UnlockArtifactsService .new(project, user) .execute(ci_ref) end end end end |