chore: disable email notifications

This commit is contained in:
Sojan 2022-08-31 16:50:21 +05:30
parent d14beeb654
commit 317c97edda

View file

@ -5,6 +5,7 @@ class Notification::EmailNotificationJob < ApplicationJob
# no need to send email if notification has been read already # no need to send email if notification has been read already
return if notification.read_at.present? return if notification.read_at.present?
Notification::EmailNotificationService.new(notification: notification).perform # suspending email notifications temporarily for now
# Notification::EmailNotificationService.new(notification: notification).perform
end end
end end