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