Chatwoot/app/jobs/notification/email_notification_job.rb
Pranav Raj S e9131ea558
Feature: Add web push notification permission in frontend (#766)
Add webpush notification permission in frontend

Co-authored-by: Sojan <sojan@pepalo.com>
2020-05-06 00:10:56 +05:30

7 lines
200 B
Ruby

class Notification::EmailNotificationJob < ApplicationJob
queue_as :default
def perform(notification)
Notification::EmailNotificationService.new(notification: notification).perform
end
end