Remove redundant default queue declaration

This commit is contained in:
Jorge Manrubia
2025-04-23 14:37:09 +02:00
parent ab73417e73
commit dc5f64ab30
5 changed files with 0 additions and 10 deletions
-2
View File
@@ -1,6 +1,4 @@
class Card::AutoCloseAllDueJob < ApplicationJob
queue_as :default
def perform
ApplicationRecord.with_each_tenant do |tenant|
Card.auto_close_all_due
@@ -1,6 +1,4 @@
class Card::AutoReconsiderAllStagnatedJob < ApplicationJob
queue_as :default
def perform
ApplicationRecord.with_each_tenant do |tenant|
Card.auto_reconsider_all_stagnated
-2
View File
@@ -1,6 +1,4 @@
class Mention::CreateJob < ApplicationJob
queue_as :default
def perform(record, mentioner:)
record.create_mentions(mentioner:)
end
-2
View File
@@ -1,6 +1,4 @@
class NotifyRecipientsJob < ApplicationJob
queue_as :default
def perform(notifiable)
notifiable.notify_recipients
end
@@ -1,6 +1,4 @@
class RemoveAbandonedCreationsJob < ApplicationJob
queue_as :default
def perform
ApplicationRecord.with_each_tenant do |tenant|
Card.remove_abandoned_creations