Skip to content

Commit

Permalink
refactor: add email previews for WebAuthn emails (mastodon#14658)
Browse files Browse the repository at this point in the history
This is a leftover for the work done in mastodon#14466.
  • Loading branch information
santiagorodriguez96 authored Aug 24, 2020
1 parent abb1457 commit 9cadd40
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions spec/mailers/previews/user_mailer_preview.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,28 @@ def two_factor_recovery_codes_changed
UserMailer.two_factor_recovery_codes_changed(User.first)
end

# Preview this email at http://localhost:3000/rails/mailers/user_mailer/webauthn_enabled
def webauthn_enabled
UserMailer.webauthn_enabled(User.first)
end

# Preview this email at http://localhost:3000/rails/mailers/user_mailer/webauthn_disabled
def webauthn_disabled
UserMailer.webauthn_disabled(User.first)
end

# Preview this email at http://localhost:3000/rails/mailers/user_mailer/webauthn_credential_added
def webauthn_credential_added
webauthn_credential = WebauthnCredential.new(nickname: 'USB Key')
UserMailer.webauthn_credential_added(User.first, webauthn_credential)
end

# Preview this email at http://localhost:3000/rails/mailers/user_mailer/webauthn_credential_deleted
def webauthn_credential_deleted
webauthn_credential = WebauthnCredential.new(nickname: 'USB Key')
UserMailer.webauthn_credential_deleted(User.first, webauthn_credential)
end

# Preview this email at http://localhost:3000/rails/mailers/user_mailer/reconfirmation_instructions
def reconfirmation_instructions
user = User.first
Expand Down

0 comments on commit 9cadd40

Please sign in to comment.