21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-04-26 22:10:50 +02:00

Fixed preview of email notifications

This commit is contained in:
Colin Darie 2018-09-01 10:50:39 +02:00
parent 77c26264f0
commit ce143201b5
No known key found for this signature in database
GPG key ID: 4FB865FDBCA4BCC4

View file

@ -6,13 +6,17 @@ class NotificationsMailerPreview < ActionMailer::Preview
# Preview this email at http://localhost:3000/rails/mailers/notifications_mailer/domain_expires_soon
def domain_expires_soon
check = Check.domain.first
NotificationsMailer.with(notification: check.notifications.first).domain_expires_soon
NotificationsMailer
.with(check_notification: check.check_notifications.first)
.domain_expires_soon
end
# Preview this email at http://localhost:3000/rails/mailers/notifications_mailer/ssl_expires_soon
def ssl_expires_soon
check = Check.ssl.first
NotificationsMailer.with(notification: check.notifications.first).ssl_expires_soon
NotificationsMailer
.with(check_notification: check.check_notifications.first)
.ssl_expires_soon
end
# Preview this email at http://localhost:3000/rails/mailers/notifications_mailer/recurrent_failures