mirror of
https://github.com/we-promise/sure.git
synced 2026-05-08 05:04:59 +00:00
* feat(auth): add WebAuthn MFA credentials * fix(auth): harden WebAuthn MFA review paths * fix(auth): polish WebAuthn error handling * fix(auth): handle duplicate WebAuthn credential races * fix(auth): permit WebAuthn credential params * fix(auth): trim WebAuthn registration controller cleanup * fix(auth): tighten WebAuthn MFA handling * fix(auth): pin WebAuthn relying party config
13 lines
340 B
Ruby
13 lines
340 B
Ruby
class Settings::SecuritiesController < ApplicationController
|
|
layout "settings"
|
|
|
|
def show
|
|
@breadcrumbs = [
|
|
[ "Home", root_path ],
|
|
[ "Security", nil ]
|
|
]
|
|
@oidc_identities = Current.user.oidc_identities.order(:provider)
|
|
@webauthn_credentials = Current.user.webauthn_credentials.order(created_at: :asc)
|
|
end
|
|
end
|