Releases: kobaltz/action_auth
v1.7.2
v1.7.1
v1.7.0
SMS Authentication Added
This feature is disabled by default and should not be used under normal circumstances. However, this feature is useful if your application doesn't need users to enter an email/password and you simply want them to enter their phone number and verify it with an authentication code.
You will need to provide your own implementation of the SMS sending, but the README provides an example.
v1.6.0
v1.5.1
v1.5.0
Updates and UI Changes
- Added Webauthn Key Types
- Updated text for Passkey Only login that it doesn't work with hardware keys
- Fixed attr_accessors for passkey_only and pwned_enabled
Database Migration!
This release includes a migration. Be sure to run
bin/rails action_auth:install:migrations
v1.4.2
v1.4.1
v1.4.0
v1.2.0
Account deletion is a feature that is enabled by default. When a user deletes their account, the account is marked as deleted and the user is logged out. The user will no longer be able to log in with their email and password. The user will need to create a new account if they wish to continue using the application.
Here's an example of how you may want to add a delete account button to your application. Obviously, you will want to style this to fit your application and have some kind of confirmation dialog.
<p>
Unhappy with the service?
<%= button_to "Delete Account", action_auth.users_path, method: :delete %>
</p>