Module: Devise::Passkeys::Controllers
- Defined in:
- lib/devise/passkeys/controllers.rb,
lib/devise/passkeys/controllers/concerns/reauthentication.rb,
lib/devise/passkeys/controllers/passkeys_controller_concern.rb,
lib/devise/passkeys/controllers/sessions_controller_concern.rb,
lib/devise/passkeys/controllers/registrations_controller_concern.rb,
lib/devise/passkeys/controllers/concerns/reauthentication_challenge.rb,
lib/devise/passkeys/controllers/reauthentication_controller_concern.rb
Overview
This module contains all the controller-level logic for:
- User (resource) registration management (signup/delete account) using passkeys
- User (resource) management of their passkeys
- User (resource) authentication & reauthenticating using their passkeys
Rather than having base classes, Devise::Passkeys::Controllers
has a series of concerns
that can be mixed into your app's controllers. This allows you to change behavior,
and does not keep you stuck down a path that could be incompatible with your
existing authentication setup.
Note: The Devise::Passkeys::Controllers::Concerns
namespace is for:
Code, related to the concerns for controllers, that can be extracted into a standalone module that can be included & extended as needed for apps that need to do something custom with their setup.
https://github.com/ruby-passkeys/devise-passkeys/issues/4#issuecomment-1590357907
Defined Under Namespace
Modules: Concerns, PasskeysControllerConcern, ReauthenticationControllerConcern, RegistrationsControllerConcern, SessionsControllerConcern