debian-mirror-gitlab/app/workers/deployments/finished_worker.rb
2019-12-21 20:55:43 +05:30

15 lines
291 B
Ruby

# frozen_string_literal: true
module Deployments
class FinishedWorker
include ApplicationWorker
queue_namespace :deployment
feature_category :continuous_delivery
def perform(deployment_id)
Deployment.find_by_id(deployment_id).try(:execute_hooks)
end
end
end