Class: MailScheduler::IssueDueWorker
- Inherits:
-
Object
- Object
- MailScheduler::IssueDueWorker
- Includes:
- ApplicationWorker, MailSchedulerQueue
- Defined in:
- app/workers/mail_scheduler/issue_due_worker.rb
Overview
rubocop:disable Scalability/IdempotentWorker
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
-
#perform(project_id) ⇒ Object
rubocop: disable CodeReuse/ActiveRecord.
Methods included from MailSchedulerQueue
Methods included from Gitlab::SidekiqVersioning::Worker
Methods included from WorkerContext
Instance Method Details
#perform(project_id) ⇒ Object
rubocop: disable CodeReuse/ActiveRecord
11 12 13 14 15 |
# File 'app/workers/mail_scheduler/issue_due_worker.rb', line 11 def perform(project_id) Issue.opened.due_tomorrow.in_projects(project_id).preload(:project).find_each do |issue| notification_service.issue_due(issue) end end |