action_auth 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f49c1498dcdca45b8440701445af29b364ccbee5c1c8d7c0a1ef4f9fdcbd34f4
4
- data.tar.gz: 174dfea10cbafabf20ac5d74a3f0757579b3b3dd51537e5261c69546b3d09c58
3
+ metadata.gz: d8811e289816e2dfabd2b7437b6f877abd02064151218f3be79ef05572ccfd4a
4
+ data.tar.gz: be2a7a8b5e8f63c9f6b5f76e04a828f2ac05974f8fd2ba19a244e562ef92eca1
5
5
  SHA512:
6
- metadata.gz: 2ddd7429775b10815decc90e8df7a5c6cc2d76e882734d33fc5ab1c3a751476033c7b57a772ed876ff922455b23d40f47dbbad5296bbd1c9e399157dfa87d11b
7
- data.tar.gz: ec39a8fc004d545f0993ff02946882cbd46e57099da40e3834d7ac4bba0466bb55b10cfd58df2e77f16c1edc714a9f7da2660c854353eb30e67d52a83c9ffba1
6
+ metadata.gz: c78ba18c296297ec6057ee91b0b9ed5d28813e2cd4f0786a297064f79105877b30730d64ee41743c42402027457971e121ba8913d74ce975a9a2a05498a26ce5
7
+ data.tar.gz: 66dfffe305815384216de8ebe9beb6d2195050a4a28d231c432aa1b92d80bca87cac4056685fe3cdfa1bfd63829265f20a468385757d25e8c4de2a13ca4dd8b9
@@ -29,7 +29,7 @@
29
29
  </table>
30
30
  </div>
31
31
 
32
- <% if ActionAuth.configuration.webauthn_enabled? %>
32
+ <% if ActionAuth.configuration&.webauthn_enabled? %>
33
33
  <% if current_user.second_factor_enabled? %>
34
34
  <h3>Your Security Keys:</h3>
35
35
  <table class="action-auth--table">
@@ -6,7 +6,7 @@
6
6
  <%= csp_meta_tag %>
7
7
  <%= stylesheet_link_tag "action_auth/application", media: "all" %>
8
8
  <%= javascript_include_tag "action_auth/application", "data-turbo-track": "reload", type: "module" %>
9
- <% if ActionAuth.configuration.webauthn_enabled? %>
9
+ <% if ActionAuth.configuration&.webauthn_enabled? %>
10
10
  <%= tag :meta, name: :webauthn_auth_url, content: action_auth.webauthn_credential_authentications_url %>
11
11
  <%= tag :meta, name: :webauthn_cred_url, content: action_auth.webauthn_credentials_url %>
12
12
  <%= tag :meta, name: :webauthn_redirect_url, content: action_auth.sessions_url %>
@@ -6,7 +6,7 @@
6
6
  <%= csp_meta_tag %>
7
7
  <%= stylesheet_link_tag "action_auth/application", media: "all" %>
8
8
  <%= javascript_include_tag "action_auth/application", "data-turbo-track": "reload", type: "module" %>
9
- <% if ActionAuth.configuration.webauthn_enabled? %>
9
+ <% if ActionAuth.configuration&.webauthn_enabled? %>
10
10
  <%= tag :meta, name: :webauthn_auth_url, content: action_auth.webauthn_credential_authentications_url %>
11
11
  <%= tag :meta, name: :webauthn_cred_url, content: action_auth.webauthn_credentials_url %>
12
12
  <%= tag :meta, name: :webauthn_redirect_url, content: action_auth.sessions_url %>
@@ -1,3 +1,3 @@
1
1
  module ActionAuth
2
- VERSION = "0.2.7"
2
+ VERSION = "0.2.8"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: action_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Kimura