2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-04-10 00:36:01 +02:00
|
|
|
# Preview all emails at http://localhost:3000/rails/mailers/admin_mailer
|
|
|
|
|
|
|
|
class AdminMailerPreview < ActionMailer::Preview
|
2023-11-23 13:32:50 +01:00
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/admin_mailer/new_report
|
|
|
|
def new_report
|
|
|
|
AdminMailer.with(recipient: Account.first).new_report(Report.first)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/admin_mailer/new_appeal
|
|
|
|
def new_appeal
|
|
|
|
AdminMailer.with(recipient: Account.first).new_appeal(Appeal.first)
|
|
|
|
end
|
|
|
|
|
2019-04-10 00:36:01 +02:00
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/admin_mailer/new_pending_account
|
|
|
|
def new_pending_account
|
2023-07-08 20:03:38 +02:00
|
|
|
AdminMailer.with(recipient: Account.first).new_pending_account(User.pending.first)
|
2019-04-10 00:36:01 +02:00
|
|
|
end
|
2021-11-25 13:07:38 +01:00
|
|
|
|
2022-02-25 00:34:14 +01:00
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/admin_mailer/new_trends
|
|
|
|
def new_trends
|
2023-07-08 20:03:38 +02:00
|
|
|
AdminMailer.with(recipient: Account.first).new_trends(PreviewCard.joins(:trend).limit(3), Tag.limit(3), Status.joins(:trend).where(reblog_of_id: nil).limit(3))
|
2021-11-25 13:07:38 +01:00
|
|
|
end
|
2022-02-14 21:27:53 +01:00
|
|
|
|
2023-11-23 13:32:50 +01:00
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/admin_mailer/new_software_updates
|
|
|
|
def new_software_updates
|
|
|
|
AdminMailer.with(recipient: Account.first).new_software_updates
|
|
|
|
end
|
|
|
|
|
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/admin_mailer/new_critical_software_updates
|
|
|
|
def new_critical_software_updates
|
|
|
|
AdminMailer.with(recipient: Account.first).new_critical_software_updates
|
2022-02-14 21:27:53 +01:00
|
|
|
end
|
2024-05-20 10:03:39 +02:00
|
|
|
|
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/admin_mailer/auto_close_registrations
|
|
|
|
def auto_close_registrations
|
|
|
|
AdminMailer.with(recipient: Account.first).auto_close_registrations
|
|
|
|
end
|
2019-04-10 00:36:01 +02:00
|
|
|
end
|