rodauth-rails 1.6.0 → 1.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/generators/rodauth/templates/app/misc/rodauth_main.rb +6 -6
- data/lib/rodauth/rails/version.rb +1 -1
- 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: 5ff93d3c4aca14c931fdf919c2eae17371105b3c4ca6cf584d699892cb705c7b
|
4
|
+
data.tar.gz: 6bb909fe804de850bd1db16c4b0c0099f8755e1f17e874ab8973cfb1563cc88e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d49446ff0285df582268de3c4dc03eef155d3dea86a3887442412ed7a84469bb4af99781e0771c98edc895ea5c5b614ab549a3042c472108a24567676592fe2e
|
7
|
+
data.tar.gz: c40379f9ec9c15152018fb7e6b0be8cf880ff4b59726615ccb3954ee7bfe529122258fc1f838e4b67581b8cfeff285ff2ad60dcfbb06fc0773eefa3c3ab9ba54
|
data/CHANGELOG.md
CHANGED
@@ -60,22 +60,22 @@ class RodauthMain < Rodauth::Rails::Auth
|
|
60
60
|
# ==> Emails
|
61
61
|
# Use a custom mailer for delivering authentication emails.
|
62
62
|
create_reset_password_email do
|
63
|
-
RodauthMailer.reset_password(
|
63
|
+
RodauthMailer.reset_password(self.class.configuration_name, account_id, reset_password_key_value)
|
64
64
|
end
|
65
65
|
create_verify_account_email do
|
66
|
-
RodauthMailer.verify_account(
|
66
|
+
RodauthMailer.verify_account(self.class.configuration_name, account_id, verify_account_key_value)
|
67
67
|
end
|
68
68
|
create_verify_login_change_email do |_login|
|
69
|
-
RodauthMailer.verify_login_change(
|
69
|
+
RodauthMailer.verify_login_change(self.class.configuration_name, account_id, verify_login_change_key_value)
|
70
70
|
end
|
71
71
|
create_password_changed_email do
|
72
|
-
RodauthMailer.password_changed(
|
72
|
+
RodauthMailer.password_changed(self.class.configuration_name, account_id)
|
73
73
|
end
|
74
74
|
# create_email_auth_email do
|
75
|
-
# RodauthMailer.email_auth(
|
75
|
+
# RodauthMailer.email_auth(self.class.configuration_name, account_id, email_auth_key_value)
|
76
76
|
# end
|
77
77
|
# create_unlock_account_email do
|
78
|
-
# RodauthMailer.unlock_account(
|
78
|
+
# RodauthMailer.unlock_account(self.class.configuration_name, account_id, unlock_account_key_value)
|
79
79
|
# end
|
80
80
|
send_email do |email|
|
81
81
|
# queue email delivery on the mailer after the transaction commits
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rodauth-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Janko Marohnić
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-09-
|
11
|
+
date: 2022-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|