authentication-zero 0.0.11 → 0.0.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (20) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +2 -2
  4. data/lib/authentication_zero/version.rb +1 -1
  5. data/lib/generators/authentication/authentication_generator.rb +6 -11
  6. data/lib/generators/authentication/templates/controllers/api/cancellations_controller.rb.tt +1 -1
  7. data/lib/generators/authentication/templates/controllers/api/password_resets_controller.rb.tt +1 -1
  8. data/lib/generators/authentication/templates/controllers/api/passwords_controller.rb.tt +1 -1
  9. data/lib/generators/authentication/templates/controllers/api/registrations_controller.rb.tt +1 -1
  10. data/lib/generators/authentication/templates/controllers/html/cancellations_controller.rb.tt +1 -1
  11. data/lib/generators/authentication/templates/controllers/html/password_resets_controller.rb.tt +2 -2
  12. data/lib/generators/authentication/templates/controllers/html/passwords_controller.rb.tt +1 -1
  13. data/lib/generators/authentication/templates/views/cancellations/new.html.erb.tt +1 -1
  14. data/lib/generators/authentication/templates/views/password_mailer/reset.html.erb.tt +1 -1
  15. data/lib/generators/authentication/templates/views/password_mailer/reset.text.erb.tt +1 -1
  16. data/lib/generators/authentication/templates/views/password_resets/edit.html.erb.tt +1 -1
  17. data/lib/generators/authentication/templates/views/password_resets/new.html.erb.tt +1 -1
  18. data/lib/generators/authentication/templates/views/passwords/edit.html.erb.tt +1 -1
  19. data/lib/generators/authentication/templates/views/sessions/new.html.erb.tt +1 -1
  20. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ea1c631f09f3da8a3b5e183d431e5596875bd04044b0a6e74a44943d7eabb8d
4
- data.tar.gz: 8242c5411752b806bca65bf8b3ac0d457231b830381b5d0369e6ea2daa2374f0
3
+ metadata.gz: c9a25e8862ad568105b15810d98b4efb68b1d7a69199c35ff7a726b991aeb21d
4
+ data.tar.gz: fd37bc06817fb23c8bd61c4cfe8635932be62ae94df89b5f5928f55b749e0a7d
5
5
  SHA512:
6
- metadata.gz: 4f73c08b89896448ceb9ce7b19df4d97a6c7ec20bfbd977c2b07b10ef20535a45a94015ccee0e13c23351388e69d0b10598a9c2ed4678858147753fdf78631d8
7
- data.tar.gz: 02d3dfd0571bb4d8f20a91eeae99f5d430f747c8651751ad4eecb566b214488535d029e746c63ea6c5a76566fc4e115c88d2c1f8a4b3801d02d0d0edc896f1ea
6
+ metadata.gz: 7c89d91c1e3b5259b2924b6c25ee09c094db9f71deb75944cf9387b45c7f3202cba8bc394539d1fc5c79038aeb5dbbbe74eed5b0ac4fd44c7f76377278380f24
7
+ data.tar.gz: 4f79e7af311270e7d995f8e07f3e2a73269c41b4fe17e31d7542e98547c96df4a6f55340d3575f05cd56e445582a9955443ca279ce8fe01f5fab4164d90c7d94
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- authentication-zero (0.0.11)
4
+ authentication-zero (0.0.12)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -31,11 +31,11 @@ Add these lines to your `app/views/home/index.html.erb`:
31
31
  <p>Signed as <%= Current.user.email %></p>
32
32
 
33
33
  <div>
34
- <%= link_to "Change password", password_edit_path %>
34
+ <%= link_to "Change password", edit_passwords_path %>
35
35
  </div>
36
36
 
37
37
  <div>
38
- <%= link_to "Cancel my account & delete my data", cancellation_new_path %>
38
+ <%= link_to "Cancel my account & delete my data", new_cancellations_path %>
39
39
  </div>
40
40
 
41
41
  <%= button_to "Log out", sign_out_path, method: :delete %>
@@ -1,3 +1,3 @@
1
1
  module AuthenticationZero
2
- VERSION = "0.0.11"
2
+ VERSION = "0.0.12"
3
3
  end
@@ -37,19 +37,14 @@ class AuthenticationGenerator < Rails::Generators::NamedBase
37
37
  end
38
38
 
39
39
  def add_routes
40
- route "get 'sign_up', to: 'registrations#new'" unless options.api?
40
+ route "resource :password_resets, only: [:new, :edit, :create, :update]"
41
+ route "resource :cancellations, only: [:new, :create]"
42
+ route "resource :passwords, only: [:update, :edit]"
43
+ route "delete 'sign_out', to: 'sessions#destroy'"
41
44
  route "post 'sign_up', to: 'registrations#create'"
42
- route "get 'sign_in', to: 'sessions#new'" unless options.api?
45
+ route "get 'sign_up', to: 'registrations#new'" unless options.api?
43
46
  route "post 'sign_in', to: 'sessions#create'"
44
- route "get 'password/edit', to: 'passwords#edit'" unless options.api?
45
- route "patch 'password', to: 'passwords#update'"
46
- route "get 'cancellation/new', to: 'cancellations#new'" unless options.api?
47
- route "post 'cancellation', to: 'cancellations#destroy'"
48
- route "get 'password_reset/new', to: 'password_resets#new'" unless options.api?
49
- route "post 'password_reset', to: 'password_resets#create'"
50
- route "get 'password_reset/edit', to: 'password_resets#edit'"
51
- route "patch 'password_reset', to: 'password_resets#update'"
52
- route "delete 'sign_out', to: 'sessions#destroy'"
47
+ route "get 'sign_in', to: 'sessions#new'" unless options.api?
53
48
  end
54
49
 
55
50
  def add_application_controller_methods
@@ -1,5 +1,5 @@
1
1
  class CancellationsController < ApplicationController
2
- def destroy
2
+ def create
3
3
  Current.<%= singular_table_name %>.destroy
4
4
  end
5
5
  end
@@ -31,6 +31,6 @@ class PasswordResetsController < ApplicationController
31
31
  end
32
32
 
33
33
  def password_params
34
- params.require(:<%= singular_table_name %>).permit(:password, :password_confirmation)
34
+ params.permit(:password, :password_confirmation)
35
35
  end
36
36
  end
@@ -17,6 +17,6 @@ class PasswordsController < ApplicationController
17
17
  end
18
18
 
19
19
  def password_params
20
- params.require(:<%= singular_table_name %>).permit(:password, :password_confirmation)
20
+ params.permit(:password, :password_confirmation)
21
21
  end
22
22
  end
@@ -13,6 +13,6 @@ class RegistrationsController < ApplicationController
13
13
 
14
14
  private
15
15
  def <%= "#{singular_table_name}_params" %>
16
- params.require(:<%= singular_table_name %>).permit(:email, :password, :password_confirmation)
16
+ params.permit(:email, :password, :password_confirmation)
17
17
  end
18
18
  end
@@ -2,7 +2,7 @@ class CancellationsController < ApplicationController
2
2
  def new
3
3
  end
4
4
 
5
- def destroy
5
+ def create
6
6
  Current.<%= singular_table_name %>.destroy
7
7
  redirect_to sign_in_path, notice: "Bye! Your account has been successfully cancelled"
8
8
  end
@@ -14,7 +14,7 @@ class PasswordResetsController < ApplicationController
14
14
  PasswordMailer.with(<%= singular_table_name %>: @<%= singular_table_name %>).reset.deliver_later
15
15
  redirect_to sign_in_path, notice: "You will receive an email with instructions on how to reset your password in a few minutes"
16
16
  else
17
- redirect_to password_reset_new_path, alert: "The email address doesn't exist in our database"
17
+ redirect_to new_password_resets_path, alert: "The email address doesn't exist in our database"
18
18
  end
19
19
  end
20
20
 
@@ -30,7 +30,7 @@ class PasswordResetsController < ApplicationController
30
30
  def set_<%= singular_table_name %>
31
31
  @<%= singular_table_name %> = <%= class_name %>.find_signed!(params[:sid], purpose: "password_reset")
32
32
  rescue ActiveSupport::MessageVerifier::InvalidSignature
33
- redirect_to password_reset_new_path, alert: "Your token has expired, please request a new one"
33
+ redirect_to new_password_resets_path, alert: "Your token has expired, please request a new one"
34
34
  end
35
35
 
36
36
  def password_params
@@ -7,7 +7,7 @@ class PasswordsController < ApplicationController
7
7
 
8
8
  def update
9
9
  if !@<%= singular_table_name %>.authenticate(params[:current_password])
10
- redirect_to password_edit_path, alert: "The current password you entered is incorrect"
10
+ redirect_to edit_passwords_path, alert: "The current password you entered is incorrect"
11
11
  elsif @<%= singular_table_name %>.update(password_params)
12
12
  redirect_to root_path, notice: "Your password has been changed successfully"
13
13
  else
@@ -7,5 +7,5 @@
7
7
  <br>
8
8
 
9
9
  <div>
10
- <%%= button_to "OK, close my account", cancellation_path %>
10
+ <%%= button_to "OK, close my account", cancellations_path %>
11
11
  </div>
@@ -2,7 +2,7 @@
2
2
 
3
3
  <p>Can't remember your password for <strong><%%= params[:<%= singular_table_name %>].email %></strong>? That's OK, it happens. Just hit the link below to set a new one.</p>
4
4
 
5
- <p><%%= link_to "Reset my password", password_reset_edit_url(sid: @signed_id) %></p>
5
+ <p><%%= link_to "Reset my password", edit_password_resets_url(sid: @signed_id) %></p>
6
6
 
7
7
  <p>If you did not request a password reset you can safely ignore this email, it expires in 20 minutes. Only someone with access to this email account can reset your password.</p>
8
8
 
@@ -2,7 +2,7 @@ Hey there,
2
2
 
3
3
  Can't remember your password for <%%= params[:<%= singular_table_name %>].email %>? That's OK, it happens. Just hit the link below to set a new one.
4
4
 
5
- [Reset my password]<%%= password_reset_edit_url(sid: @signed_id) %>
5
+ [Reset my password]<%%= edit_password_resets_url(sid: @signed_id) %>
6
6
 
7
7
  If you did not request a password reset you can safely ignore this email, it expires in 20 minutes. Only someone with access to this email account can reset your password.
8
8
 
@@ -1,6 +1,6 @@
1
1
  <h1>Reset your password</h1>
2
2
 
3
- <%%= form_with(model: @<%= model_resource_name %>, url: password_reset_path) do |form| %>
3
+ <%%= form_with(model: @<%= model_resource_name %>, url: password_resets_path) do |form| %>
4
4
  <%% if @<%= singular_table_name %>.errors.any? %>
5
5
  <div style="color: red">
6
6
  <h2><%%= pluralize(@<%= singular_table_name %>.errors.count, "error") %> prohibited this <%= singular_table_name %> from being saved:</h2>
@@ -2,7 +2,7 @@
2
2
 
3
3
  <h1>Forgot your password?</h1>
4
4
 
5
- <%%= form_with(url: password_reset_path) do |form| %>
5
+ <%%= form_with(url: password_resets_path) do |form| %>
6
6
  <div>
7
7
  <%%= form.label :email, style: "display: block" %>
8
8
  <%%= form.email_field :email, autofocus: true, required: true %>
@@ -2,7 +2,7 @@
2
2
 
3
3
  <h1>Change your password</h1>
4
4
 
5
- <%%= form_with(model: @<%= model_resource_name %>, url: password_path) do |form| %>
5
+ <%%= form_with(model: @<%= model_resource_name %>, url: passwords_path) do |form| %>
6
6
  <%% if @<%= singular_table_name %>.errors.any? %>
7
7
  <div style="color: red">
8
8
  <h2><%%= pluralize(@<%= singular_table_name %>.errors.count, "error") %> prohibited this <%= singular_table_name %> from being saved:</h2>
@@ -28,5 +28,5 @@
28
28
 
29
29
  <div>
30
30
  <%%= link_to "Sign up", sign_up_path %> |
31
- <%%= link_to "Forgot your password?", password_reset_new_path %>
31
+ <%%= link_to "Forgot your password?", new_password_resets_path %>
32
32
  </div>
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: 0.0.11
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nixon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-16 00:00:00.000000000 Z
11
+ date: 2022-02-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: