mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
9 lines
292 B
Ruby
9 lines
292 B
Ruby
# frozen_string_literal: true
|
|
|
|
class NotificationsMailerPreview < ActionMailer::Preview
|
|
def notify_user_auth_migration
|
|
notif = Notification.find_by(notification_type_id: NotificationType.find_by(name: 'notify_user_auth_migration'))
|
|
NotificationsMailer.send_mail_by(notif)
|
|
end
|
|
end
|