action_auth 0.2.10 → 0.2.12
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc2b5c1ea2fa4db1e7077c5db0bdef79bef6e4a1dc6a7a29db69bd7f581216f6
|
4
|
+
data.tar.gz: c03de322676673b031883777bec65024d8de0a77c163eefae643f37de4715049
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4fbb81e376fee165f7b5384b9d930db04b50c94ad5b9a82273059e20b2431ef8908dfe9f3e6a70dee66acdb2042915ddbee5eea8ed56c6c20d3ed66ddabed45d
|
7
|
+
data.tar.gz: fcf9fdec98b006c5e693e90fdd63c13ce5546e9268300ec9da95d4a4989d3199206d8b04f2e0cbcc8be8852ba8de8fbd93290ef1cdd79fcd41da4b23478c7424
|
data/README.md
CHANGED
@@ -65,6 +65,7 @@ ActionAuth.configure do |config|
|
|
65
65
|
config.webauthn_origin = "http://localhost:3000" # or "https://example.com"
|
66
66
|
config.webauthn_rp_name = Rails.application.class.to_s.deconstantize
|
67
67
|
config.verify_email_on_sign_in = true
|
68
|
+
config.default_from_email = "from@example.com"
|
68
69
|
end
|
69
70
|
```
|
70
71
|
|
@@ -200,6 +201,7 @@ ActionAuth.configure do |config|
|
|
200
201
|
config.webauthn_origin = "http://localhost:3000" # or "https://example.com"
|
201
202
|
config.webauthn_rp_name = Rails.application.class.to_s.deconstantize
|
202
203
|
config.verify_email_on_sign_in = true
|
204
|
+
config.default_from_email = "from@example.com"
|
203
205
|
end
|
204
206
|
```
|
205
207
|
|
@@ -29,6 +29,13 @@ body {
|
|
29
29
|
background-color: rgb(255, 255, 255) !important;
|
30
30
|
}
|
31
31
|
|
32
|
+
@media screen and (max-width: 768px) {
|
33
|
+
.container {
|
34
|
+
width: calc(100% - 10px);
|
35
|
+
margin-left: 5px;
|
36
|
+
margin-right: 5px;
|
37
|
+
}
|
38
|
+
}
|
32
39
|
.container-fluid {
|
33
40
|
-webkit-text-size-adjust: 100%;
|
34
41
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
@@ -5,12 +5,14 @@ module ActionAuth
|
|
5
5
|
attr_accessor :webauthn_origin
|
6
6
|
attr_accessor :webauthn_rp_name
|
7
7
|
attr_accessor :verify_email_on_sign_in
|
8
|
+
attr_accessor :default_from_email
|
8
9
|
|
9
10
|
def initialize
|
10
11
|
@webauthn_enabled = defined?(WebAuthn)
|
11
12
|
@webauthn_origin = "http://localhost:3000"
|
12
13
|
@webauthn_rp_name = Rails.application.class.to_s.deconstantize
|
13
14
|
@verify_email_on_sign_in = true
|
15
|
+
@default_from_email = "from@example.com"
|
14
16
|
end
|
15
17
|
|
16
18
|
def webauthn_enabled?
|
data/lib/action_auth/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: action_auth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dave Kimura
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -120,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
120
|
- !ruby/object:Gem::Version
|
121
121
|
version: '0'
|
122
122
|
requirements: []
|
123
|
-
rubygems_version: 3.5.
|
123
|
+
rubygems_version: 3.5.5
|
124
124
|
signing_key:
|
125
125
|
specification_version: 4
|
126
126
|
summary: A simple Rails engine for authorization.
|