action_auth 0.2.6 → 0.2.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/action_auth/user.rb +1 -1
- data/config/routes.rb +1 -1
- data/lib/action_auth/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f49c1498dcdca45b8440701445af29b364ccbee5c1c8d7c0a1ef4f9fdcbd34f4
|
4
|
+
data.tar.gz: 174dfea10cbafabf20ac5d74a3f0757579b3b3dd51537e5261c69546b3d09c58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ddd7429775b10815decc90e8df7a5c6cc2d76e882734d33fc5ab1c3a751476033c7b57a772ed876ff922455b23d40f47dbbad5296bbd1c9e399157dfa87d11b
|
7
|
+
data.tar.gz: ec39a8fc004d545f0993ff02946882cbd46e57099da40e3834d7ac4bba0466bb55b10cfd58df2e77f16c1edc714a9f7da2660c854353eb30e67d52a83c9ffba1
|
@@ -5,7 +5,7 @@ module ActionAuth
|
|
5
5
|
has_many :action_auth_sessions, dependent: :destroy,
|
6
6
|
class_name: "ActionAuth::Session", foreign_key: "action_auth_user_id"
|
7
7
|
|
8
|
-
if ActionAuth.configuration
|
8
|
+
if ActionAuth.configuration&.webauthn_enabled?
|
9
9
|
has_many :action_auth_webauthn_credentials, dependent: :destroy,
|
10
10
|
class_name: "ActionAuth::WebauthnCredential", foreign_key: "action_auth_user_id"
|
11
11
|
end
|
data/config/routes.rb
CHANGED
@@ -11,7 +11,7 @@ ActionAuth::Engine.routes.draw do
|
|
11
11
|
resource :password_reset, only: [:new, :edit, :create, :update]
|
12
12
|
end
|
13
13
|
|
14
|
-
if ActionAuth.configuration
|
14
|
+
if ActionAuth.configuration&.webauthn_enabled?
|
15
15
|
resources :webauthn_credentials, only: [:new, :create, :destroy] do
|
16
16
|
post :options, on: :collection, as: 'options_for'
|
17
17
|
end
|
data/lib/action_auth/version.rb
CHANGED