Compare commits

...

2 commits

Author SHA1 Message Date
Sojan
f29fd3f80d Merge branch 'develop' into chore/email-notifications 2022-09-01 17:20:04 +05:30
Sojan
317c97edda chore: disable email notifications 2022-08-31 16:50:21 +05:30

View file

@ -5,6 +5,7 @@ class Notification::EmailNotificationJob < ApplicationJob
# no need to send email if notification has been read already
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