debian-mirror-gitlab/app/workers/new_release_worker.rb
2019-12-26 22:10:19 +05:30

15 lines
345 B
Ruby

# frozen_string_literal: true
class NewReleaseWorker
include ApplicationWorker
queue_namespace :notifications
feature_category :release_orchestration
def perform(release_id)
release = Release.preloaded.find_by_id(release_id)
return unless release
NotificationService.new.send_new_release_notifications(release)
end
end