6 lines
120 B
Ruby
6 lines
120 B
Ruby
class Notification::Bundle::DeliverAllJob < ApplicationJob
|
|
def perform
|
|
Notification::Bundle.deliver_all
|
|
end
|
|
end
|