action_auth 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/views/action_auth/user_mailer/email_verification.html.erb +13 -7
- data/app/views/action_auth/user_mailer/email_verification.text.erb +8 -2
- data/app/views/action_auth/user_mailer/password_reset.html.erb +12 -7
- data/app/views/action_auth/user_mailer/password_reset.text.erb +9 -2
- data/lib/action_auth/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b6e6716e6085a4699cccd544b10b44820b6ae495a3d3f5bfcdeec2e431aa7d4b
|
|
4
|
+
data.tar.gz: 691df85965955adbdd86b7e1afff980fe8b168f0678f652ecc4eb3a15d23c9d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e141ae249344149df8215f3f069c5d733afeb1429ee99862ca80368af746334adf576a0b03db2301bbf179d77ff24a10988b3acfaeb254c367fd56caa29e1ee
|
|
7
|
+
data.tar.gz: fc31f96b41314fc725bdfd72461ac974456d2acbdfc811252ad70a674fc47b91f34b0d88c1652ef72122b28e989df69abc19ef462cf98187282841da33b27665
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
<p>Hey there,</p>
|
|
2
2
|
|
|
3
|
-
<p>
|
|
3
|
+
<p>
|
|
4
|
+
This is to confirm that <%= @user.email %> is the email you
|
|
5
|
+
want to use on your account. If you ever lose your password,
|
|
6
|
+
that's where we'll email a reset link.
|
|
7
|
+
</p>
|
|
4
8
|
|
|
5
|
-
<p
|
|
9
|
+
<p>
|
|
10
|
+
<strong>
|
|
11
|
+
You must hit the link below to confirm that you received this email.
|
|
12
|
+
</strong>
|
|
13
|
+
</p>
|
|
6
14
|
|
|
7
|
-
<p
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
<p>Have questions or need help? Just reply to this email and our support team will help you sort it out.</p>
|
|
15
|
+
<p>
|
|
16
|
+
<%= link_to "Yes, use this email for my account", identity_email_verification_url(sid: @signed_id) %>
|
|
17
|
+
</p>
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
Hey there,
|
|
2
2
|
|
|
3
|
-
<%= @
|
|
3
|
+
This is to confirm that <%= @user.email %> is the email you
|
|
4
|
+
want to use on your account. If you ever lose your password,
|
|
5
|
+
that's where we'll email a reset link.
|
|
6
|
+
|
|
7
|
+
You must click the link below to confirm that you received this email.
|
|
8
|
+
|
|
9
|
+
<%= identity_email_verification_url(sid: @signed_id) %>
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
<p>Hey there,</p>
|
|
2
2
|
|
|
3
|
-
<p>
|
|
3
|
+
<p>
|
|
4
|
+
Can't remember your password for <strong><%= @user.email %></strong>?
|
|
5
|
+
That's OK, it happens. Just hit the link below to set a new one.
|
|
6
|
+
</p>
|
|
4
7
|
|
|
5
|
-
<p
|
|
8
|
+
<p>
|
|
9
|
+
<%= link_to "Reset my password", edit_identity_password_reset_url(sid: @signed_id) %>
|
|
10
|
+
</p>
|
|
6
11
|
|
|
7
|
-
<p>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
+
<p>
|
|
13
|
+
If you did not request a password reset you can safely ignore this email,
|
|
14
|
+
it expires in 20 minutes. Only someone with access to this email account
|
|
15
|
+
can reset your password.
|
|
16
|
+
</p>
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
Hey there,
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Can't remember your password for <strong><%= @user.email %></strong>?
|
|
4
|
+
That's OK, it happens. Just hit the link below to set a new one.
|
|
5
|
+
|
|
6
|
+
<%= edit_identity_password_reset_url(sid: @signed_id) %>
|
|
7
|
+
|
|
8
|
+
If you did not request a password reset you can safely ignore this email,
|
|
9
|
+
it expires in 20 minutes. Only someone with access to this email account
|
|
10
|
+
can reset your password.
|
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.1.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dave Kimura
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
112
112
|
- !ruby/object:Gem::Version
|
|
113
113
|
version: '0'
|
|
114
114
|
requirements: []
|
|
115
|
-
rubygems_version: 3.
|
|
115
|
+
rubygems_version: 3.5.3
|
|
116
116
|
signing_key:
|
|
117
117
|
specification_version: 4
|
|
118
118
|
summary: A simple Rails engine for authorization.
|