authentication-zero 2.15.2 → 2.15.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/authentication_zero/version.rb +1 -1
- data/lib/generators/authentication/templates/controllers/api/identity/emails_controller.rb.tt +13 -1
- data/lib/generators/authentication/templates/controllers/api/registrations_controller.rb.tt +5 -0
- data/lib/generators/authentication/templates/controllers/html/identity/emails_controller.rb.tt +14 -1
- data/lib/generators/authentication/templates/controllers/html/registrations_controller.rb.tt +5 -0
- data/lib/generators/authentication/templates/models/user.rb.tt +0 -7
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6fb0a9a6a553fede5d9554fed3c4d616b61e75c5e503fde621785003f0911fd4
|
4
|
+
data.tar.gz: 1f0d80023ec24a5b7395fe5e6b60efe3b437111f757205c98a569e66dcdbc0a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e5041cf30bce8ebc6ad319c51b803d6af97055c59e4e7d74d56cb3abdb8d3555fce1b96f03b11cdfd7bb63022b20d50ae55774cbd84a921165f4bc2bb8b4c60
|
7
|
+
data.tar.gz: 8a26de6eedb1d793e3c58eb0f9f8d0289e1903e641ba538e30de3f43d6f8325e7386430808a56b857e6a9bb3bee261e731da2a180380d300165077a13d2be2f1
|
data/Gemfile.lock
CHANGED
data/lib/generators/authentication/templates/controllers/api/identity/emails_controller.rb.tt
CHANGED
@@ -6,7 +6,7 @@ class Identity::EmailsController < ApplicationController
|
|
6
6
|
|
7
7
|
def update
|
8
8
|
if @user.update(user_params)
|
9
|
-
|
9
|
+
render_show
|
10
10
|
else
|
11
11
|
render json: @user.errors, status: :unprocessable_entity
|
12
12
|
end
|
@@ -20,4 +20,16 @@ class Identity::EmailsController < ApplicationController
|
|
20
20
|
def user_params
|
21
21
|
params.permit(:email)
|
22
22
|
end
|
23
|
+
|
24
|
+
def render_show
|
25
|
+
if @user.email_previously_changed?
|
26
|
+
resend_email_verification; render(json: @user)
|
27
|
+
else
|
28
|
+
render json: @user
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def resend_email_verification
|
33
|
+
UserMailer.with(user: @user).email_verification.deliver_later
|
34
|
+
end
|
23
35
|
end
|
@@ -5,6 +5,7 @@ class RegistrationsController < ApplicationController
|
|
5
5
|
@user = User.new(user_params)
|
6
6
|
|
7
7
|
if @user.save
|
8
|
+
send_email_verification
|
8
9
|
render json: @user, status: :created
|
9
10
|
else
|
10
11
|
render json: @user.errors, status: :unprocessable_entity
|
@@ -15,4 +16,8 @@ class RegistrationsController < ApplicationController
|
|
15
16
|
def user_params
|
16
17
|
params.permit(:email, :password, :password_confirmation)
|
17
18
|
end
|
19
|
+
|
20
|
+
def send_email_verification
|
21
|
+
UserMailer.with(user: @user).email_verification.deliver_later
|
22
|
+
end
|
18
23
|
end
|
data/lib/generators/authentication/templates/controllers/html/identity/emails_controller.rb.tt
CHANGED
@@ -9,7 +9,7 @@ class Identity::EmailsController < ApplicationController
|
|
9
9
|
|
10
10
|
def update
|
11
11
|
if @user.update(user_params)
|
12
|
-
|
12
|
+
redirect_to_root
|
13
13
|
else
|
14
14
|
render :edit, status: :unprocessable_entity
|
15
15
|
end
|
@@ -23,4 +23,17 @@ class Identity::EmailsController < ApplicationController
|
|
23
23
|
def user_params
|
24
24
|
params.permit(:email)
|
25
25
|
end
|
26
|
+
|
27
|
+
def redirect_to_root
|
28
|
+
if @user.email_previously_changed?
|
29
|
+
resend_email_verification
|
30
|
+
redirect_to root_path, notice: "Your email has been changed"
|
31
|
+
else
|
32
|
+
redirect_to root_path
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def resend_email_verification
|
37
|
+
UserMailer.with(user: @user).email_verification.deliver_later
|
38
|
+
end
|
26
39
|
end
|
data/lib/generators/authentication/templates/controllers/html/registrations_controller.rb.tt
CHANGED
@@ -12,6 +12,7 @@ class RegistrationsController < ApplicationController
|
|
12
12
|
session = @user.sessions.create!
|
13
13
|
cookies.signed.permanent[:session_token] = { value: session.id, httponly: true }
|
14
14
|
|
15
|
+
send_email_verification
|
15
16
|
redirect_to root_path, notice: "Welcome! You have signed up successfully"
|
16
17
|
else
|
17
18
|
render :new, status: :unprocessable_entity
|
@@ -22,4 +23,8 @@ class RegistrationsController < ApplicationController
|
|
22
23
|
def user_params
|
23
24
|
params.permit(:email, :password, :password_confirmation)
|
24
25
|
end
|
26
|
+
|
27
|
+
def send_email_verification
|
28
|
+
UserMailer.with(user: @user).email_verification.deliver_later
|
29
|
+
end
|
25
30
|
end
|
@@ -26,17 +26,10 @@ class User < ApplicationRecord
|
|
26
26
|
self.verified = false
|
27
27
|
end
|
28
28
|
|
29
|
-
after_create_commit do
|
30
|
-
UserMailer.with(user: self).email_verification.deliver_later
|
31
|
-
end
|
32
|
-
|
33
29
|
after_update if: :password_digest_previously_changed? do
|
34
30
|
sessions.where.not(id: Current.session).destroy_all
|
35
31
|
end
|
36
32
|
|
37
|
-
after_update if: :email_previously_changed? do
|
38
|
-
UserMailer.with(user: self).email_verification.deliver_later
|
39
|
-
end
|
40
33
|
<%- if options.trackable? %>
|
41
34
|
after_update if: :email_previously_changed? do
|
42
35
|
events.create! action: "email_verification_requested"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: authentication-zero
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.15.
|
4
|
+
version: 2.15.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nixon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|