2023-02-22 11:55:31 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-04-10 08:36:01 +10:00
|
|
|
# Preview all emails at http://localhost:3000/rails/mailers/admin_mailer
|
|
|
|
|
|
|
|
class AdminMailerPreview < ActionMailer::Preview
|
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/admin_mailer/new_pending_account
|
|
|
|
def new_pending_account
|
2023-07-09 04:03:38 +10:00
|
|
|
AdminMailer.with(recipient: Account.first).new_pending_account(User.pending.first)
|
2019-04-10 08:36:01 +10:00
|
|
|
end
|
2021-11-25 23:07:38 +11:00
|
|
|
|
2022-02-25 10:34:14 +11:00
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/admin_mailer/new_trends
|
|
|
|
def new_trends
|
2023-07-09 04:03:38 +10: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 23:07:38 +11:00
|
|
|
end
|
2022-02-15 07:27:53 +11:00
|
|
|
|
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/admin_mailer/new_appeal
|
|
|
|
def new_appeal
|
2023-07-09 04:03:38 +10:00
|
|
|
AdminMailer.with(recipient: Account.first).new_appeal(Appeal.first)
|
2022-02-15 07:27:53 +11:00
|
|
|
end
|
2019-04-10 08:36:01 +10:00
|
|
|
end
|