e9131ea558
Add webpush notification permission in frontend Co-authored-by: Sojan <sojan@pepalo.com>
7 lines
200 B
Ruby
7 lines
200 B
Ruby
class Notification::EmailNotificationJob < ApplicationJob
|
|
queue_as :default
|
|
|
|
def perform(notification)
|
|
Notification::EmailNotificationService.new(notification: notification).perform
|
|
end
|
|
end
|