1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/test/mailers/previews/notifications_mailer_preview.rb

9 lines
295 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class NotificationsMailerPreview < ActionMailer::Preview
def notify_user_auth_migration
notif = Notification.where(notification_type_id: NotificationType.find_by_name('notify_user_auth_migration')).first
NotificationsMailer.send_mail_by(notif)
end
end