devise 4.4.3 → 4.9.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +174 -4
- data/MIT-LICENSE +2 -1
- data/README.md +129 -65
- data/app/controllers/devise/confirmations_controller.rb +1 -0
- data/app/controllers/devise/passwords_controller.rb +3 -2
- data/app/controllers/devise/registrations_controller.rb +27 -9
- data/app/controllers/devise/sessions_controller.rb +2 -2
- data/app/controllers/devise/unlocks_controller.rb +1 -0
- data/app/controllers/devise_controller.rb +17 -3
- data/app/helpers/devise_helper.rb +21 -18
- data/app/mailers/devise/mailer.rb +5 -5
- data/app/views/devise/confirmations/new.html.erb +1 -1
- data/app/views/devise/passwords/edit.html.erb +3 -3
- data/app/views/devise/passwords/new.html.erb +1 -1
- data/app/views/devise/registrations/edit.html.erb +5 -5
- data/app/views/devise/registrations/new.html.erb +3 -3
- data/app/views/devise/sessions/new.html.erb +3 -3
- data/app/views/devise/shared/_error_messages.html.erb +15 -0
- data/app/views/devise/shared/_links.html.erb +8 -8
- data/app/views/devise/unlocks/new.html.erb +1 -1
- data/config/locales/en.yml +3 -2
- data/lib/devise/controllers/helpers.rb +10 -8
- data/lib/devise/controllers/responder.rb +35 -0
- data/lib/devise/controllers/sign_in_out.rb +9 -4
- data/lib/devise/controllers/url_helpers.rb +1 -1
- data/lib/devise/failure_app.rb +41 -8
- data/lib/devise/hooks/csrf_cleaner.rb +6 -1
- data/lib/devise/hooks/lockable.rb +2 -5
- data/lib/devise/hooks/timeoutable.rb +2 -2
- data/lib/devise/mapping.rb +1 -1
- data/lib/devise/models/authenticatable.rb +51 -48
- data/lib/devise/models/confirmable.rb +34 -40
- data/lib/devise/models/database_authenticatable.rb +54 -35
- data/lib/devise/models/lockable.rb +13 -5
- data/lib/devise/models/omniauthable.rb +2 -2
- data/lib/devise/models/recoverable.rb +8 -19
- data/lib/devise/models/registerable.rb +2 -0
- data/lib/devise/models/rememberable.rb +2 -2
- data/lib/devise/models/timeoutable.rb +1 -1
- data/lib/devise/models/trackable.rb +9 -2
- data/lib/devise/models/validatable.rb +4 -9
- data/lib/devise/models.rb +1 -0
- data/lib/devise/omniauth.rb +2 -5
- data/lib/devise/orm.rb +71 -0
- data/lib/devise/parameter_filter.rb +2 -0
- data/lib/devise/parameter_sanitizer.rb +13 -1
- data/lib/devise/rails/deprecated_constant_accessor.rb +39 -0
- data/lib/devise/rails/routes.rb +6 -6
- data/lib/devise/rails.rb +4 -0
- data/lib/devise/secret_key_finder.rb +2 -0
- data/lib/devise/strategies/authenticatable.rb +1 -1
- data/lib/devise/strategies/database_authenticatable.rb +6 -1
- data/lib/devise/test/controller_helpers.rb +5 -3
- data/lib/devise/test/integration_helpers.rb +1 -1
- data/lib/devise/test_helpers.rb +1 -1
- data/lib/devise/version.rb +1 -1
- data/lib/devise.rb +38 -11
- data/lib/generators/active_record/devise_generator.rb +26 -11
- data/lib/generators/devise/controllers_generator.rb +1 -1
- data/lib/generators/devise/devise_generator.rb +1 -1
- data/lib/generators/devise/install_generator.rb +1 -5
- data/lib/generators/devise/orm_helpers.rb +2 -2
- data/lib/generators/devise/views_generator.rb +1 -1
- data/lib/generators/mongoid/devise_generator.rb +5 -5
- data/lib/generators/templates/README +9 -1
- data/lib/generators/templates/controllers/omniauth_callbacks_controller.rb +1 -1
- data/lib/generators/templates/devise.rb +38 -8
- data/lib/generators/templates/simple_form_for/confirmations/new.html.erb +5 -1
- data/lib/generators/templates/simple_form_for/passwords/edit.html.erb +10 -2
- data/lib/generators/templates/simple_form_for/passwords/new.html.erb +4 -1
- data/lib/generators/templates/simple_form_for/registrations/edit.html.erb +12 -4
- data/lib/generators/templates/simple_form_for/registrations/new.html.erb +11 -3
- data/lib/generators/templates/simple_form_for/sessions/new.html.erb +7 -2
- data/lib/generators/templates/simple_form_for/unlocks/new.html.erb +4 -1
- metadata +23 -316
- data/.gitignore +0 -10
- data/.travis.yml +0 -68
- data/.yardopts +0 -9
- data/CODE_OF_CONDUCT.md +0 -22
- data/CONTRIBUTING.md +0 -79
- data/Gemfile +0 -39
- data/Gemfile.lock +0 -193
- data/ISSUE_TEMPLATE.md +0 -19
- data/Rakefile +0 -37
- data/bin/test +0 -13
- data/devise.gemspec +0 -28
- data/devise.png +0 -0
- data/gemfiles/Gemfile.rails-4.1-stable +0 -32
- data/gemfiles/Gemfile.rails-4.1-stable.lock +0 -171
- data/gemfiles/Gemfile.rails-4.2-stable +0 -32
- data/gemfiles/Gemfile.rails-4.2-stable.lock +0 -192
- data/gemfiles/Gemfile.rails-5.0-stable +0 -33
- data/gemfiles/Gemfile.rails-5.0-stable.lock +0 -192
- data/gemfiles/Gemfile.rails-5.2-rc1 +0 -26
- data/gemfiles/Gemfile.rails-5.2-rc1.lock +0 -201
- data/guides/bug_report_templates/integration_test.rb +0 -106
- data/test/controllers/custom_registrations_controller_test.rb +0 -42
- data/test/controllers/custom_strategy_test.rb +0 -66
- data/test/controllers/helper_methods_test.rb +0 -24
- data/test/controllers/helpers_test.rb +0 -318
- data/test/controllers/inherited_controller_i18n_messages_test.rb +0 -53
- data/test/controllers/internal_helpers_test.rb +0 -129
- data/test/controllers/load_hooks_controller_test.rb +0 -21
- data/test/controllers/passwords_controller_test.rb +0 -34
- data/test/controllers/sessions_controller_test.rb +0 -108
- data/test/controllers/url_helpers_test.rb +0 -67
- data/test/delegator_test.rb +0 -21
- data/test/devise_test.rb +0 -109
- data/test/failure_app_test.rb +0 -340
- data/test/generators/active_record_generator_test.rb +0 -130
- data/test/generators/controllers_generator_test.rb +0 -50
- data/test/generators/devise_generator_test.rb +0 -41
- data/test/generators/install_generator_test.rb +0 -26
- data/test/generators/mongoid_generator_test.rb +0 -25
- data/test/generators/views_generator_test.rb +0 -105
- data/test/helpers/devise_helper_test.rb +0 -51
- data/test/integration/authenticatable_test.rb +0 -706
- data/test/integration/confirmable_test.rb +0 -326
- data/test/integration/database_authenticatable_test.rb +0 -97
- data/test/integration/http_authenticatable_test.rb +0 -114
- data/test/integration/lockable_test.rb +0 -242
- data/test/integration/mounted_engine_test.rb +0 -38
- data/test/integration/omniauthable_test.rb +0 -148
- data/test/integration/recoverable_test.rb +0 -349
- data/test/integration/registerable_test.rb +0 -365
- data/test/integration/rememberable_test.rb +0 -219
- data/test/integration/timeoutable_test.rb +0 -186
- data/test/integration/trackable_test.rb +0 -99
- data/test/mailers/confirmation_instructions_test.rb +0 -117
- data/test/mailers/email_changed_test.rb +0 -132
- data/test/mailers/mailer_test.rb +0 -20
- data/test/mailers/reset_password_instructions_test.rb +0 -98
- data/test/mailers/unlock_instructions_test.rb +0 -93
- data/test/mapping_test.rb +0 -136
- data/test/models/authenticatable_test.rb +0 -25
- data/test/models/confirmable_test.rb +0 -549
- data/test/models/database_authenticatable_test.rb +0 -283
- data/test/models/lockable_test.rb +0 -352
- data/test/models/omniauthable_test.rb +0 -9
- data/test/models/recoverable_test.rb +0 -263
- data/test/models/registerable_test.rb +0 -9
- data/test/models/rememberable_test.rb +0 -184
- data/test/models/serializable_test.rb +0 -60
- data/test/models/timeoutable_test.rb +0 -53
- data/test/models/trackable_test.rb +0 -62
- data/test/models/validatable_test.rb +0 -121
- data/test/models_test.rb +0 -155
- data/test/omniauth/config_test.rb +0 -61
- data/test/omniauth/url_helpers_test.rb +0 -53
- data/test/orm/active_record.rb +0 -24
- data/test/orm/mongoid.rb +0 -15
- data/test/parameter_sanitizer_test.rb +0 -77
- data/test/rails_app/Rakefile +0 -6
- data/test/rails_app/app/active_record/admin.rb +0 -8
- data/test/rails_app/app/active_record/shim.rb +0 -4
- data/test/rails_app/app/active_record/user.rb +0 -20
- data/test/rails_app/app/active_record/user_on_engine.rb +0 -9
- data/test/rails_app/app/active_record/user_on_main_app.rb +0 -9
- data/test/rails_app/app/active_record/user_with_validations.rb +0 -12
- data/test/rails_app/app/active_record/user_without_email.rb +0 -10
- data/test/rails_app/app/controllers/admins/sessions_controller.rb +0 -8
- data/test/rails_app/app/controllers/admins_controller.rb +0 -8
- data/test/rails_app/app/controllers/application_controller.rb +0 -13
- data/test/rails_app/app/controllers/application_with_fake_engine.rb +0 -32
- data/test/rails_app/app/controllers/custom/registrations_controller.rb +0 -33
- data/test/rails_app/app/controllers/home_controller.rb +0 -31
- data/test/rails_app/app/controllers/publisher/registrations_controller.rb +0 -4
- data/test/rails_app/app/controllers/publisher/sessions_controller.rb +0 -4
- data/test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb +0 -16
- data/test/rails_app/app/controllers/users_controller.rb +0 -33
- data/test/rails_app/app/helpers/application_helper.rb +0 -5
- data/test/rails_app/app/mailers/users/from_proc_mailer.rb +0 -5
- data/test/rails_app/app/mailers/users/mailer.rb +0 -5
- data/test/rails_app/app/mailers/users/reply_to_mailer.rb +0 -6
- data/test/rails_app/app/mongoid/admin.rb +0 -31
- data/test/rails_app/app/mongoid/shim.rb +0 -25
- data/test/rails_app/app/mongoid/user.rb +0 -50
- data/test/rails_app/app/mongoid/user_on_engine.rb +0 -41
- data/test/rails_app/app/mongoid/user_on_main_app.rb +0 -41
- data/test/rails_app/app/mongoid/user_with_validations.rb +0 -37
- data/test/rails_app/app/mongoid/user_without_email.rb +0 -35
- data/test/rails_app/app/views/admins/index.html.erb +0 -1
- data/test/rails_app/app/views/admins/sessions/new.html.erb +0 -2
- data/test/rails_app/app/views/home/admin_dashboard.html.erb +0 -1
- data/test/rails_app/app/views/home/index.html.erb +0 -1
- data/test/rails_app/app/views/home/join.html.erb +0 -1
- data/test/rails_app/app/views/home/private.html.erb +0 -1
- data/test/rails_app/app/views/home/user_dashboard.html.erb +0 -1
- data/test/rails_app/app/views/layouts/application.html.erb +0 -24
- data/test/rails_app/app/views/users/edit_form.html.erb +0 -1
- data/test/rails_app/app/views/users/index.html.erb +0 -1
- data/test/rails_app/app/views/users/mailer/confirmation_instructions.erb +0 -1
- data/test/rails_app/app/views/users/sessions/new.html.erb +0 -1
- data/test/rails_app/bin/bundle +0 -3
- data/test/rails_app/bin/rails +0 -4
- data/test/rails_app/bin/rake +0 -4
- data/test/rails_app/config/application.rb +0 -48
- data/test/rails_app/config/boot.rb +0 -27
- data/test/rails_app/config/database.yml +0 -18
- data/test/rails_app/config/environment.rb +0 -7
- data/test/rails_app/config/environments/development.rb +0 -32
- data/test/rails_app/config/environments/production.rb +0 -88
- data/test/rails_app/config/environments/test.rb +0 -47
- data/test/rails_app/config/initializers/backtrace_silencers.rb +0 -9
- data/test/rails_app/config/initializers/devise.rb +0 -182
- data/test/rails_app/config/initializers/inflections.rb +0 -4
- data/test/rails_app/config/initializers/secret_token.rb +0 -5
- data/test/rails_app/config/initializers/session_store.rb +0 -3
- data/test/rails_app/config/routes.rb +0 -128
- data/test/rails_app/config.ru +0 -4
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +0 -77
- data/test/rails_app/db/schema.rb +0 -57
- data/test/rails_app/lib/shared_admin.rb +0 -23
- data/test/rails_app/lib/shared_user.rb +0 -32
- data/test/rails_app/lib/shared_user_without_email.rb +0 -28
- data/test/rails_app/lib/shared_user_without_omniauth.rb +0 -15
- data/test/rails_app/public/404.html +0 -26
- data/test/rails_app/public/422.html +0 -26
- data/test/rails_app/public/500.html +0 -26
- data/test/rails_app/public/favicon.ico +0 -0
- data/test/rails_test.rb +0 -11
- data/test/routes_test.rb +0 -281
- data/test/secret_key_finder_test.rb +0 -97
- data/test/support/action_controller/record_identifier.rb +0 -12
- data/test/support/assertions.rb +0 -30
- data/test/support/helpers.rb +0 -83
- data/test/support/http_method_compatibility.rb +0 -53
- data/test/support/integration.rb +0 -95
- data/test/support/locale/en.yml +0 -8
- data/test/support/mongoid.yml +0 -6
- data/test/support/webrat/integrations/rails.rb +0 -35
- data/test/test/controller_helpers_test.rb +0 -193
- data/test/test/integration_helpers_test.rb +0 -34
- data/test/test_helper.rb +0 -36
- data/test/test_models.rb +0 -35
data/README.md
CHANGED
@@ -1,11 +1,4 @@
|
|
1
|
-
![Devise Logo](https://raw.github.com/
|
2
|
-
|
3
|
-
By [Plataformatec](http://plataformatec.com.br/).
|
4
|
-
|
5
|
-
[![Build Status](https://api.travis-ci.org/plataformatec/devise.svg?branch=master)](http://travis-ci.org/plataformatec/devise)
|
6
|
-
[![Code Climate](https://codeclimate.com/github/plataformatec/devise.svg)](https://codeclimate.com/github/plataformatec/devise)
|
7
|
-
|
8
|
-
This README is [also available in a friendly navigable format](http://devise.plataformatec.com.br/).
|
1
|
+
![Devise Logo](https://raw.github.com/heartcombo/devise/main/devise.png)
|
9
2
|
|
10
3
|
Devise is a flexible authentication solution for Rails based on Warden. It:
|
11
4
|
|
@@ -16,16 +9,16 @@ Devise is a flexible authentication solution for Rails based on Warden. It:
|
|
16
9
|
|
17
10
|
It's composed of 10 modules:
|
18
11
|
|
19
|
-
* [Database Authenticatable](http://rubydoc.info/github/
|
20
|
-
* [Omniauthable](http://rubydoc.info/github/
|
21
|
-
* [Confirmable](http://rubydoc.info/github/
|
22
|
-
* [Recoverable](http://rubydoc.info/github/
|
23
|
-
* [Registerable](http://rubydoc.info/github/
|
24
|
-
* [Rememberable](http://rubydoc.info/github/
|
25
|
-
* [Trackable](http://rubydoc.info/github/
|
26
|
-
* [Timeoutable](http://rubydoc.info/github/
|
27
|
-
* [Validatable](http://rubydoc.info/github/
|
28
|
-
* [Lockable](http://rubydoc.info/github/
|
12
|
+
* [Database Authenticatable](http://www.rubydoc.info/github/heartcombo/devise/main/Devise/Models/DatabaseAuthenticatable): hashes and stores a password in the database to validate the authenticity of a user while signing in. The authentication can be done both through POST requests or HTTP Basic Authentication.
|
13
|
+
* [Omniauthable](http://www.rubydoc.info/github/heartcombo/devise/main/Devise/Models/Omniauthable): adds OmniAuth (https://github.com/omniauth/omniauth) support.
|
14
|
+
* [Confirmable](http://www.rubydoc.info/github/heartcombo/devise/main/Devise/Models/Confirmable): sends emails with confirmation instructions and verifies whether an account is already confirmed during sign in.
|
15
|
+
* [Recoverable](http://www.rubydoc.info/github/heartcombo/devise/main/Devise/Models/Recoverable): resets the user password and sends reset instructions.
|
16
|
+
* [Registerable](http://www.rubydoc.info/github/heartcombo/devise/main/Devise/Models/Registerable): handles signing up users through a registration process, also allowing them to edit and destroy their account.
|
17
|
+
* [Rememberable](http://www.rubydoc.info/github/heartcombo/devise/main/Devise/Models/Rememberable): manages generating and clearing a token for remembering the user from a saved cookie.
|
18
|
+
* [Trackable](http://www.rubydoc.info/github/heartcombo/devise/main/Devise/Models/Trackable): tracks sign in count, timestamps and IP address.
|
19
|
+
* [Timeoutable](http://www.rubydoc.info/github/heartcombo/devise/main/Devise/Models/Timeoutable): expires sessions that have not been active in a specified period of time.
|
20
|
+
* [Validatable](http://www.rubydoc.info/github/heartcombo/devise/main/Devise/Models/Validatable): provides validations of email and password. It's optional and can be customized, so you're able to define your own validations.
|
21
|
+
* [Lockable](http://www.rubydoc.info/github/heartcombo/devise/main/Devise/Models/Lockable): locks an account after a specified number of failed sign-in attempts. Can unlock via email or after a specified time period.
|
29
22
|
|
30
23
|
## Table of Contents
|
31
24
|
|
@@ -53,16 +46,11 @@ It's composed of 10 modules:
|
|
53
46
|
- [Integration tests](#integration-tests)
|
54
47
|
- [OmniAuth](#omniauth)
|
55
48
|
- [Configuring multiple models](#configuring-multiple-models)
|
56
|
-
- [
|
57
|
-
- [Inside your Admin model](#inside-your-admin-model)
|
58
|
-
- [Inside your routes](#inside-your-routes)
|
59
|
-
- [Inside your protected controller](#inside-your-protected-controller)
|
60
|
-
- [Inside your controllers and views](#inside-your-controllers-and-views)
|
61
|
-
- [ActiveJob Integration](#activejob-integration)
|
49
|
+
- [Active Job Integration](#active-job-integration)
|
62
50
|
- [Password reset tokens and Rails logs](#password-reset-tokens-and-rails-logs)
|
63
51
|
- [Other ORMs](#other-orms)
|
52
|
+
- [Rails API mode](#rails-api-mode)
|
64
53
|
- [Additional information](#additional-information)
|
65
|
-
- [Heroku](#heroku)
|
66
54
|
- [Warden](#warden)
|
67
55
|
- [Contributors](#contributors)
|
68
56
|
- [License](#license)
|
@@ -77,15 +65,15 @@ It's composed of 10 modules:
|
|
77
65
|
|
78
66
|
The Devise Wiki has lots of additional information about Devise including many "how-to" articles and answers to the most frequently asked questions. Please browse the Wiki after finishing this README:
|
79
67
|
|
80
|
-
https://github.com/
|
68
|
+
https://github.com/heartcombo/devise/wiki
|
81
69
|
|
82
70
|
### Bug reports
|
83
71
|
|
84
72
|
If you discover a problem with Devise, we would like to know about it. However, we ask that you please review these guidelines before submitting a bug report:
|
85
73
|
|
86
|
-
https://github.com/
|
74
|
+
https://github.com/heartcombo/devise/wiki/Bug-reports
|
87
75
|
|
88
|
-
If you have discovered a security related bug, please do *NOT* use the GitHub issue tracker. Send an email to
|
76
|
+
If you have discovered a security related bug, please do *NOT* use the GitHub issue tracker. Send an email to heartcombo@googlegroups.com.
|
89
77
|
|
90
78
|
### StackOverflow and Mailing List
|
91
79
|
|
@@ -101,7 +89,7 @@ https://groups.google.com/group/plataformatec-devise
|
|
101
89
|
|
102
90
|
You can view the Devise documentation in RDoc format here:
|
103
91
|
|
104
|
-
http://rubydoc.info/github/
|
92
|
+
http://rubydoc.info/github/heartcombo/devise/main/frames
|
105
93
|
|
106
94
|
If you need to use Devise with previous versions of Rails, you can always run "gem server" from the command line after you install the gem to access the old documentation.
|
107
95
|
|
@@ -109,26 +97,26 @@ If you need to use Devise with previous versions of Rails, you can always run "g
|
|
109
97
|
|
110
98
|
There are a few example applications available on GitHub that demonstrate various features of Devise with different versions of Rails. You can view them here:
|
111
99
|
|
112
|
-
https://github.com/
|
100
|
+
https://github.com/heartcombo/devise/wiki/Example-Applications
|
113
101
|
|
114
102
|
### Extensions
|
115
103
|
|
116
104
|
Our community has created a number of extensions that add functionality above and beyond what is included with Devise. You can view a list of available extensions and add your own here:
|
117
105
|
|
118
|
-
https://github.com/
|
106
|
+
https://github.com/heartcombo/devise/wiki/Extensions
|
119
107
|
|
120
108
|
### Contributing
|
121
109
|
|
122
110
|
We hope that you will consider contributing to Devise. Please read this short overview for some information about how to get started:
|
123
111
|
|
124
|
-
https://github.com/
|
112
|
+
https://github.com/heartcombo/devise/wiki/Contributing
|
125
113
|
|
126
114
|
You will usually want to write tests for your changes. To run the test suite, go into Devise's top-level directory and run `bundle install` and `bin/test`.
|
127
115
|
Devise works with multiple Ruby and Rails versions, and ActiveRecord and Mongoid ORMs, which means you can run the test suite with some modifiers: `DEVISE_ORM` and `BUNDLE_GEMFILE`.
|
128
116
|
|
129
117
|
### DEVISE_ORM
|
130
|
-
Since Devise
|
131
|
-
The default value of `DEVISE_ORM` is `active_record`. To run the tests for
|
118
|
+
Since Devise supports both Mongoid and ActiveRecord, we rely on this variable to run specific code for each ORM.
|
119
|
+
The default value of `DEVISE_ORM` is `active_record`. To run the tests for Mongoid, you can pass `mongoid`:
|
132
120
|
```
|
133
121
|
DEVISE_ORM=mongoid bin/test
|
134
122
|
|
@@ -140,7 +128,7 @@ Please note that the command output will show the variable value being used.
|
|
140
128
|
|
141
129
|
### BUNDLE_GEMFILE
|
142
130
|
We can use this variable to tell bundler what Gemfile it should use (instead of the one in the current directory).
|
143
|
-
Inside the [gemfiles](https://github.com/
|
131
|
+
Inside the [gemfiles](https://github.com/heartcombo/devise/tree/main/gemfiles) directory, we have one for each version of Rails we support. When you send us a pull request, it may happen that the test suite breaks using some of them. If that's the case, you can simulate the same environment using the `BUNDLE_GEMFILE` variable.
|
144
132
|
For example, if the tests broke using Ruby 2.4.2 and Rails 4.1, you can do the following:
|
145
133
|
```bash
|
146
134
|
rbenv shell 2.4.2 # or rvm use 2.4.2
|
@@ -154,19 +142,37 @@ BUNDLE_GEMFILE=gemfiles/Gemfile.rails-4.1-stable bundle install
|
|
154
142
|
BUNDLE_GEMFILE=gemfiles/Gemfile.rails-4.1-stable DEVISE_ORM=mongoid bin/test
|
155
143
|
```
|
156
144
|
|
145
|
+
### Running tests
|
146
|
+
Devise uses [Mini Test](https://github.com/seattlerb/minitest) as test framework.
|
147
|
+
|
148
|
+
* Running all tests:
|
149
|
+
```bash
|
150
|
+
bin/test
|
151
|
+
```
|
152
|
+
|
153
|
+
* Running tests for an specific file:
|
154
|
+
```bash
|
155
|
+
bin/test test/models/trackable_test.rb
|
156
|
+
```
|
157
|
+
|
158
|
+
* Running a specific test given a regex:
|
159
|
+
```bash
|
160
|
+
bin/test test/models/trackable_test.rb:16
|
161
|
+
```
|
162
|
+
|
157
163
|
## Starting with Rails?
|
158
164
|
|
159
|
-
If you are building your first Rails application, we recommend you *do not* use Devise. Devise requires a good understanding of the Rails Framework. In such cases, we advise you to start a simple authentication system from scratch.
|
165
|
+
If you are building your first Rails application, we recommend you *do not* use Devise. Devise requires a good understanding of the Rails Framework. In such cases, we advise you to start a simple authentication system from scratch. Here's a few resources that should help you get started:
|
160
166
|
|
161
167
|
* Michael Hartl's online book: https://www.railstutorial.org/book/modeling_users
|
162
|
-
* Ryan Bates'
|
163
|
-
* Codecademy's Ruby on Rails: Authentication and Authorization:
|
168
|
+
* Ryan Bates' Railscasts: http://railscasts.com/episodes/250-authentication-from-scratch and http://railscasts.com/episodes/250-authentication-from-scratch-revised
|
169
|
+
* Codecademy's Ruby on Rails: Authentication and Authorization: https://www.codecademy.com/learn/rails-auth
|
164
170
|
|
165
171
|
Once you have solidified your understanding of Rails and authentication mechanisms, we assure you Devise will be very pleasant to work with. :smiley:
|
166
172
|
|
167
173
|
## Getting started
|
168
174
|
|
169
|
-
Devise 4.0 works with Rails 4.1 onwards.
|
175
|
+
Devise 4.0 works with Rails 4.1 onwards. Add the following line to your Gemfile:
|
170
176
|
|
171
177
|
```ruby
|
172
178
|
gem 'devise'
|
@@ -195,7 +201,7 @@ In the following command you will replace `MODEL` with the class name used for t
|
|
195
201
|
$ rails generate devise MODEL
|
196
202
|
```
|
197
203
|
|
198
|
-
Next, check the MODEL for any additional configuration options you might want to add, such as confirmable or lockable. If you add an option, be sure to inspect the migration file (created by the generator if your ORM supports them) and uncomment the appropriate section. For example, if you add the confirmable option in the model, you'll need to uncomment the Confirmable section in the migration.
|
204
|
+
Next, check the MODEL for any additional configuration options you might want to add, such as confirmable or lockable. If you add an option, be sure to inspect the migration file (created by the generator if your ORM supports them) and uncomment the appropriate section. For example, if you add the confirmable option in the model, you'll need to uncomment the Confirmable section in the migration.
|
199
205
|
|
200
206
|
Then run `rails db:migrate`
|
201
207
|
|
@@ -256,16 +262,16 @@ member_session
|
|
256
262
|
The Devise method in your models also accepts some options to configure its modules. For example, you can choose the cost of the hashing algorithm with:
|
257
263
|
|
258
264
|
```ruby
|
259
|
-
devise :database_authenticatable, :registerable, :confirmable, :recoverable, stretches:
|
265
|
+
devise :database_authenticatable, :registerable, :confirmable, :recoverable, stretches: 13
|
260
266
|
```
|
261
267
|
|
262
268
|
Besides `:stretches`, you can define `:pepper`, `:encryptor`, `:confirm_within`, `:remember_for`, `:timeout_in`, `:unlock_in` among other options. For more details, see the initializer file that was created when you invoked the "devise:install" generator described above. This file is usually located at `/config/initializers/devise.rb`.
|
263
269
|
|
264
270
|
### Strong Parameters
|
265
271
|
|
266
|
-
|
272
|
+
The Parameter Sanitizer API has changed for Devise 4 :warning:
|
267
273
|
|
268
|
-
*For previous Devise versions see https://github.com/
|
274
|
+
*For previous Devise versions see https://github.com/heartcombo/devise/tree/3-stable#strong-parameters*
|
269
275
|
|
270
276
|
When you customize your own views, you may end up adding new attributes to forms. Rails 4 moved the parameter sanitization from the model to the controller, causing Devise to handle this concern at the controller as well.
|
271
277
|
|
@@ -275,7 +281,7 @@ There are just three actions in Devise that allow any set of parameters to be pa
|
|
275
281
|
* `sign_up` (`Devise::RegistrationsController#create`) - Permits authentication keys plus `password` and `password_confirmation`
|
276
282
|
* `account_update` (`Devise::RegistrationsController#update`) - Permits authentication keys plus `password`, `password_confirmation` and `current_password`
|
277
283
|
|
278
|
-
In case you want to permit additional parameters (the lazy way™), you can do so using a simple before
|
284
|
+
In case you want to permit additional parameters (the lazy way™), you can do so using a simple before action in your `ApplicationController`:
|
279
285
|
|
280
286
|
```ruby
|
281
287
|
class ApplicationController < ActionController::Base
|
@@ -303,7 +309,7 @@ class ApplicationController < ActionController::Base
|
|
303
309
|
end
|
304
310
|
```
|
305
311
|
|
306
|
-
Devise allows you to completely change Devise defaults or invoke custom
|
312
|
+
Devise allows you to completely change Devise defaults or invoke custom behavior by passing a block:
|
307
313
|
|
308
314
|
To permit simple scalar values for username and email, use this
|
309
315
|
|
@@ -376,7 +382,7 @@ $ rails generate devise:views users
|
|
376
382
|
```
|
377
383
|
|
378
384
|
If you would like to generate only a few sets of views, like the ones for the `registerable` and `confirmable` module,
|
379
|
-
you can pass a list of
|
385
|
+
you can pass a list of views to the generator with the `-v` flag.
|
380
386
|
|
381
387
|
```console
|
382
388
|
$ rails generate devise:views -v registrations confirmations
|
@@ -404,6 +410,7 @@ If the customization at the views level is not enough, you can customize each co
|
|
404
410
|
...
|
405
411
|
end
|
406
412
|
```
|
413
|
+
Use the `-c` flag to specify one or more controllers, for example: `rails generate devise:controllers users -c sessions`)
|
407
414
|
|
408
415
|
2. Tell the router to use this controller:
|
409
416
|
|
@@ -411,7 +418,7 @@ If the customization at the views level is not enough, you can customize each co
|
|
411
418
|
devise_for :users, controllers: { sessions: 'users/sessions' }
|
412
419
|
```
|
413
420
|
|
414
|
-
3.
|
421
|
+
3. Recommended but not required: copy (or move) the views from `devise/sessions` to `users/sessions`. Rails will continue using the views from `devise/sessions` due to inheritance if you skip this step, but having the views matching the controller(s) keeps things consistent.
|
415
422
|
|
416
423
|
4. Finally, change or extend the desired controller actions.
|
417
424
|
|
@@ -425,7 +432,7 @@ If the customization at the views level is not enough, you can customize each co
|
|
425
432
|
end
|
426
433
|
```
|
427
434
|
|
428
|
-
Or you can simply add new
|
435
|
+
Or you can simply add new behavior to it:
|
429
436
|
|
430
437
|
```ruby
|
431
438
|
class Users::SessionsController < Devise::SessionsController
|
@@ -449,7 +456,7 @@ Devise also ships with default routes. If you need to customize them, you should
|
|
449
456
|
devise_for :users, path: 'auth', path_names: { sign_in: 'login', sign_out: 'logout', password: 'secret', confirmation: 'verification', unlock: 'unblock', registration: 'register', sign_up: 'cmon_let_me_in' }
|
450
457
|
```
|
451
458
|
|
452
|
-
Be sure to check `devise_for` [documentation](http://www.rubydoc.info/github/
|
459
|
+
Be sure to check `devise_for` [documentation](http://www.rubydoc.info/github/heartcombo/devise/main/ActionDispatch/Routing/Mapper%3Adevise_for) for details.
|
453
460
|
|
454
461
|
If you have the need for more deep customization, for instance to also allow "/sign_in" besides "/users/sign_in", all you need to do is create your routes normally and wrap them in a `devise_scope` block in the router:
|
455
462
|
|
@@ -467,6 +474,36 @@ Please note: You will still need to add `devise_for` in your routes in order to
|
|
467
474
|
devise_for :users, skip: :all
|
468
475
|
```
|
469
476
|
|
477
|
+
### Hotwire/Turbo
|
478
|
+
|
479
|
+
Devise integrates with Hotwire/Turbo by treating such requests as navigational, and configuring certain responses for errors and redirects to match the expected behavior. New apps are generated with the following response configuration by default, and existing apps may opt-in by adding the config to their Devise initializers:
|
480
|
+
|
481
|
+
```ruby
|
482
|
+
Devise.setup do |config|
|
483
|
+
# ...
|
484
|
+
# When using Devise with Hotwire/Turbo, the http status for error responses
|
485
|
+
# and some redirects must match the following. The default in Devise for existing
|
486
|
+
# apps is `200 OK` and `302 Found` respectively, but new apps are generated with
|
487
|
+
# these new defaults that match Hotwire/Turbo behavior.
|
488
|
+
# Note: These might become the new default in future versions of Devise.
|
489
|
+
config.responder.error_status = :unprocessable_entity
|
490
|
+
config.responder.redirect_status = :see_other
|
491
|
+
end
|
492
|
+
```
|
493
|
+
|
494
|
+
**Important**: these custom responses require the `responders` gem version to be `3.1.0` or higher, please make sure you update it if you're going to use this configuration. Check [this upgrade guide](https://github.com/heartcombo/devise/wiki/How-To:-Upgrade-to-Devise-4.9.0-[Hotwire-Turbo-integration]) for more info.
|
495
|
+
|
496
|
+
_Note_: the above statuses configuration may become the default for Devise in a future release.
|
497
|
+
|
498
|
+
There are a couple other changes you might need to make in your app to work with Hotwire/Turbo, if you're migrating from rails-ujs:
|
499
|
+
|
500
|
+
* The `data-confirm` option that adds a confirmation modal to buttons/forms before submission needs to change to `data-turbo-confirm`, so that Turbo handles those appropriately.
|
501
|
+
* The `data-method` option that sets the request method for link submissions needs to change to `data-turbo-method`. This is not necessary for `button_to` or `form`s since Turbo can handle those.
|
502
|
+
|
503
|
+
If you're setting up Devise to sign out via `:delete`, and you're using links (instead of buttons wrapped in a form) to sign out with the `method: :delete` option, they will need to be updated as described above. (Devise does not provide sign out links/buttons in its shared views.)
|
504
|
+
|
505
|
+
Make sure to inspect your views looking for those, and change appropriately.
|
506
|
+
|
470
507
|
### I18n
|
471
508
|
|
472
509
|
Devise uses flash messages with I18n, in conjunction with the flash keys :notice and :alert. To customize your app, you can set up your locale file:
|
@@ -505,7 +542,7 @@ en:
|
|
505
542
|
|
506
543
|
Take a look at our locale file to check all available messages. You may also be interested in one of the many translations that are available on our wiki:
|
507
544
|
|
508
|
-
https://github.com/
|
545
|
+
https://github.com/heartcombo/devise/wiki/I18n
|
509
546
|
|
510
547
|
Caution: Devise Controllers inherit from ApplicationController. If your app uses multiple locales, you should be sure to set I18n.locale in ApplicationController.
|
511
548
|
|
@@ -517,12 +554,21 @@ cases/specs.
|
|
517
554
|
|
518
555
|
### Controller tests
|
519
556
|
|
520
|
-
Controller tests require that you include `Devise::Test::
|
557
|
+
Controller tests require that you include `Devise::Test::IntegrationHelpers` on
|
521
558
|
your test case or its parent `ActionController::TestCase` superclass.
|
559
|
+
For Rails versions prior to 5, include `Devise::Test::ControllerHelpers` instead, since the superclass
|
560
|
+
for controller tests was changed to ActionDispatch::IntegrationTest
|
561
|
+
(for more details, see the [Integration tests](#integration-tests) section).
|
562
|
+
|
563
|
+
```ruby
|
564
|
+
class PostsControllerTest < ActionController::TestCase
|
565
|
+
include Devise::Test::IntegrationHelpers # Rails >= 5
|
566
|
+
end
|
567
|
+
```
|
522
568
|
|
523
569
|
```ruby
|
524
570
|
class PostsControllerTest < ActionController::TestCase
|
525
|
-
include Devise::Test::ControllerHelpers
|
571
|
+
include Devise::Test::ControllerHelpers # Rails < 5
|
526
572
|
end
|
527
573
|
```
|
528
574
|
|
@@ -602,7 +648,7 @@ are executed in your tests.
|
|
602
648
|
|
603
649
|
You can read more about testing your Rails 3 - Rails 4 controllers with RSpec in the wiki:
|
604
650
|
|
605
|
-
* https://github.com/
|
651
|
+
* https://github.com/heartcombo/devise/wiki/How-To:-Test-controllers-with-Rails-(and-RSpec)
|
606
652
|
|
607
653
|
### OmniAuth
|
608
654
|
|
@@ -614,7 +660,7 @@ config.omniauth :github, 'APP_ID', 'APP_SECRET', scope: 'user,public_repo'
|
|
614
660
|
|
615
661
|
You can read more about OmniAuth support in the wiki:
|
616
662
|
|
617
|
-
* https://github.com/
|
663
|
+
* https://github.com/heartcombo/devise/wiki/OmniAuth:-Overview
|
618
664
|
|
619
665
|
### Configuring multiple models
|
620
666
|
|
@@ -661,12 +707,12 @@ end
|
|
661
707
|
|
662
708
|
### Password reset tokens and Rails logs
|
663
709
|
|
664
|
-
If you enable the [Recoverable](http://rubydoc.info/github/
|
710
|
+
If you enable the [Recoverable](http://rubydoc.info/github/heartcombo/devise/main/Devise/Models/Recoverable) module, note that a stolen password reset token could give an attacker access to your application. Devise takes effort to generate random, secure tokens, and stores only token digests in the database, never plaintext. However the default logging behavior in Rails can cause plaintext tokens to leak into log files:
|
665
711
|
|
666
712
|
1. Action Mailer logs the entire contents of all outgoing emails to the DEBUG level. Password reset tokens delivered to users in email will be leaked.
|
667
713
|
2. Active Job logs all arguments to every enqueued job at the INFO level. If you configure Devise to use `deliver_later` to send password reset emails, password reset tokens will be leaked.
|
668
714
|
|
669
|
-
Rails sets the production logger level to
|
715
|
+
Rails sets the production logger level to INFO by default. Consider changing your production logger level to WARN if you wish to prevent tokens from being leaked into your logs. In `config/environments/production.rb`:
|
670
716
|
|
671
717
|
```ruby
|
672
718
|
config.log_level = :warn
|
@@ -677,32 +723,50 @@ config.log_level = :warn
|
|
677
723
|
|
678
724
|
Devise supports ActiveRecord (default) and Mongoid. To select another ORM, simply require it in the initializer file.
|
679
725
|
|
680
|
-
|
726
|
+
### Rails API Mode
|
727
|
+
|
728
|
+
Rails 5+ has a built-in [API Mode](https://edgeguides.rubyonrails.org/api_app.html) which optimizes Rails for use as an API (only). Devise is _somewhat_ able to handle applications that are built in this mode without additional modifications in the sense that it should not raise exceptions and the like. But some issues may still arise during `development`/`testing`, as we still don't know the full extent of this compatibility. (For more information, see [issue #4947](https://github.com/heartcombo/devise/issues/4947/))
|
729
|
+
|
730
|
+
#### Supported Authentication Strategies
|
731
|
+
API-only applications don't support browser-based authentication via cookies, which is devise's default. Yet, devise can still provide authentication out of the box in those cases with the `http_authenticatable` strategy, which uses HTTP Basic Auth and authenticates the user on each request. (For more info, see this wiki article for [How To: Use HTTP Basic Authentication](https://github.com/heartcombo/devise/wiki/How-To:-Use-HTTP-Basic-Authentication))
|
732
|
+
|
733
|
+
The devise default for HTTP Auth is disabled, so it will need to be enabled in the devise initializer for the database strategy:
|
734
|
+
|
735
|
+
```ruby
|
736
|
+
config.http_authenticatable = [:database]
|
737
|
+
```
|
681
738
|
|
682
|
-
|
739
|
+
This restriction does not limit you from implementing custom warden strategies, either in your application or via gem-based extensions for devise.
|
740
|
+
A common authentication strategy for APIs is token-based authentication. For more information on extending devise to support this type of authentication and others, see the wiki article for [Simple Token Authentication Examples and alternatives](https://github.com/heartcombo/devise/wiki/How-To:-Simple-Token-Authentication-Example#alternatives) or this blog post on [Custom authentication methods with Devise](http://blog.plataformatec.com.br/2019/01/custom-authentication-methods-with-devise/).
|
683
741
|
|
684
|
-
|
742
|
+
#### Testing
|
743
|
+
API Mode changes the order of the middleware stack, and this can cause problems for `Devise::Test::IntegrationHelpers`. This problem usually surfaces as an ```undefined method `[]=' for nil:NilClass``` error when using integration test helpers, such as `#sign_in`. The solution is simply to reorder the middlewares by adding the following to test.rb:
|
685
744
|
|
686
745
|
```ruby
|
687
|
-
config.
|
746
|
+
Rails.application.config.middleware.insert_before Warden::Manager, ActionDispatch::Cookies
|
747
|
+
Rails.application.config.middleware.insert_before Warden::Manager, ActionDispatch::Session::CookieStore
|
688
748
|
```
|
689
749
|
|
690
|
-
|
750
|
+
For a deeper understanding of this, review [this issue](https://github.com/heartcombo/devise/issues/4696).
|
751
|
+
|
752
|
+
Additionally be mindful that without views supported, some email-based flows from Confirmable, Recoverable and Lockable are not supported directly at this time.
|
753
|
+
|
754
|
+
## Additional information
|
691
755
|
|
692
756
|
### Warden
|
693
757
|
|
694
758
|
Devise is based on Warden, which is a general Rack authentication framework created by Daniel Neighman. We encourage you to read more about Warden here:
|
695
759
|
|
696
|
-
https://github.com/
|
760
|
+
https://github.com/wardencommunity/warden
|
697
761
|
|
698
762
|
### Contributors
|
699
763
|
|
700
764
|
We have a long list of valued contributors. Check them all at:
|
701
765
|
|
702
|
-
https://github.com/
|
766
|
+
https://github.com/heartcombo/devise/graphs/contributors
|
703
767
|
|
704
768
|
## License
|
705
769
|
|
706
|
-
MIT License. Copyright 2009-
|
770
|
+
MIT License. Copyright 2020-2024 Rafael França, Leonardo Tegon, Carlos Antônio da Silva. Copyright 2009-2019 Plataformatec.
|
707
771
|
|
708
|
-
|
772
|
+
The Devise logo is licensed under [Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License](https://creativecommons.org/licenses/by-nc-nd/4.0/).
|
@@ -27,6 +27,7 @@ class Devise::ConfirmationsController < DeviseController
|
|
27
27
|
set_flash_message!(:notice, :confirmed)
|
28
28
|
respond_with_navigational(resource){ redirect_to after_confirmation_path_for(resource_name, resource) }
|
29
29
|
else
|
30
|
+
# TODO: use `error_status` when the default changes to `:unprocessable_entity`.
|
30
31
|
respond_with_navigational(resource.errors, status: :unprocessable_entity){ render :new }
|
31
32
|
end
|
32
33
|
end
|
@@ -36,9 +36,10 @@ class Devise::PasswordsController < DeviseController
|
|
36
36
|
|
37
37
|
if resource.errors.empty?
|
38
38
|
resource.unlock_access! if unlockable?(resource)
|
39
|
-
if
|
39
|
+
if resource_class.sign_in_after_reset_password
|
40
40
|
flash_message = resource.active_for_authentication? ? :updated : :updated_not_active
|
41
41
|
set_flash_message!(:notice, flash_message)
|
42
|
+
resource.after_database_authentication
|
42
43
|
sign_in(resource_name, resource)
|
43
44
|
else
|
44
45
|
set_flash_message!(:notice, :updated_not_active)
|
@@ -52,7 +53,7 @@ class Devise::PasswordsController < DeviseController
|
|
52
53
|
|
53
54
|
protected
|
54
55
|
def after_resetting_password_path_for(resource)
|
55
|
-
|
56
|
+
resource_class.sign_in_after_reset_password ? after_sign_in_path_for(resource) : new_session_path(resource_name)
|
56
57
|
end
|
57
58
|
|
58
59
|
# The path used after sending reset password instructions
|
@@ -50,12 +50,9 @@ class Devise::RegistrationsController < DeviseController
|
|
50
50
|
resource_updated = update_resource(resource, account_update_params)
|
51
51
|
yield resource if block_given?
|
52
52
|
if resource_updated
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
set_flash_message :notice, flash_key
|
57
|
-
end
|
58
|
-
bypass_sign_in resource, scope: resource_name
|
53
|
+
set_flash_message_for_update(resource, prev_unconfirmed_email)
|
54
|
+
bypass_sign_in resource, scope: resource_name if sign_in_after_change_password?
|
55
|
+
|
59
56
|
respond_with resource, location: after_update_path_for(resource)
|
60
57
|
else
|
61
58
|
clean_up_passwords resource
|
@@ -70,7 +67,7 @@ class Devise::RegistrationsController < DeviseController
|
|
70
67
|
Devise.sign_out_all_scopes ? sign_out : sign_out(resource_name)
|
71
68
|
set_flash_message! :notice, :destroyed
|
72
69
|
yield resource if block_given?
|
73
|
-
respond_with_navigational(resource){ redirect_to after_sign_out_path_for(resource_name) }
|
70
|
+
respond_with_navigational(resource){ redirect_to after_sign_out_path_for(resource_name), status: Devise.responder.redirect_status }
|
74
71
|
end
|
75
72
|
|
76
73
|
# GET /resource/cancel
|
@@ -112,7 +109,7 @@ class Devise::RegistrationsController < DeviseController
|
|
112
109
|
# The path used after sign up. You need to overwrite this method
|
113
110
|
# in your own RegistrationsController.
|
114
111
|
def after_sign_up_path_for(resource)
|
115
|
-
after_sign_in_path_for(resource)
|
112
|
+
after_sign_in_path_for(resource) if is_navigational_format?
|
116
113
|
end
|
117
114
|
|
118
115
|
# The path used after sign up for inactive accounts. You need to overwrite
|
@@ -127,7 +124,7 @@ class Devise::RegistrationsController < DeviseController
|
|
127
124
|
# The default url to be used after updating a resource. You need to overwrite
|
128
125
|
# this method in your own RegistrationsController.
|
129
126
|
def after_update_path_for(resource)
|
130
|
-
signed_in_root_path(resource)
|
127
|
+
sign_in_after_change_password? ? signed_in_root_path(resource) : new_session_path(resource_name)
|
131
128
|
end
|
132
129
|
|
133
130
|
# Authenticates the current scope and gets the current resource from the session.
|
@@ -147,4 +144,25 @@ class Devise::RegistrationsController < DeviseController
|
|
147
144
|
def translation_scope
|
148
145
|
'devise.registrations'
|
149
146
|
end
|
147
|
+
|
148
|
+
private
|
149
|
+
|
150
|
+
def set_flash_message_for_update(resource, prev_unconfirmed_email)
|
151
|
+
return unless is_flashing_format?
|
152
|
+
|
153
|
+
flash_key = if update_needs_confirmation?(resource, prev_unconfirmed_email)
|
154
|
+
:update_needs_confirmation
|
155
|
+
elsif sign_in_after_change_password?
|
156
|
+
:updated
|
157
|
+
else
|
158
|
+
:updated_but_not_signed_in
|
159
|
+
end
|
160
|
+
set_flash_message :notice, flash_key
|
161
|
+
end
|
162
|
+
|
163
|
+
def sign_in_after_change_password?
|
164
|
+
return true if account_update_params[:password].blank?
|
165
|
+
|
166
|
+
Devise.sign_in_after_change_password
|
167
|
+
end
|
150
168
|
end
|
@@ -45,7 +45,7 @@ class Devise::SessionsController < DeviseController
|
|
45
45
|
end
|
46
46
|
|
47
47
|
def auth_options
|
48
|
-
{ scope: resource_name, recall: "#{controller_path}#new" }
|
48
|
+
{ scope: resource_name, recall: "#{controller_path}#new", locale: I18n.locale }
|
49
49
|
end
|
50
50
|
|
51
51
|
def translation_scope
|
@@ -77,7 +77,7 @@ class Devise::SessionsController < DeviseController
|
|
77
77
|
# support returning empty response on GET request
|
78
78
|
respond_to do |format|
|
79
79
|
format.all { head :no_content }
|
80
|
-
format.any(*navigational_formats) { redirect_to after_sign_out_path_for(resource_name) }
|
80
|
+
format.any(*navigational_formats) { redirect_to after_sign_out_path_for(resource_name), status: Devise.responder.redirect_status }
|
81
81
|
end
|
82
82
|
end
|
83
83
|
end
|
@@ -29,6 +29,7 @@ class Devise::UnlocksController < DeviseController
|
|
29
29
|
set_flash_message! :notice, :unlocked
|
30
30
|
respond_with_navigational(resource){ redirect_to after_unlock_path_for(resource) }
|
31
31
|
else
|
32
|
+
# TODO: use `error_status` when the default changes to `:unprocessable_entity`.
|
32
33
|
respond_with_navigational(resource.errors, status: :unprocessable_entity){ render :new }
|
33
34
|
end
|
34
35
|
end
|
@@ -15,6 +15,7 @@ class DeviseController < Devise.parent_controller.constantize
|
|
15
15
|
end
|
16
16
|
|
17
17
|
prepend_before_action :assert_is_devise_resource!
|
18
|
+
self.responder = Devise.responder
|
18
19
|
respond_to :html if mimes_for_respond_to.empty?
|
19
20
|
|
20
21
|
# Override prefixes to consider the scoped view.
|
@@ -22,7 +23,7 @@ class DeviseController < Devise.parent_controller.constantize
|
|
22
23
|
# Action Controller tests that forces _prefixes to be
|
23
24
|
# loaded before even having a request object.
|
24
25
|
#
|
25
|
-
# This method should be public as it is
|
26
|
+
# This method should be public as it is in ActionPack
|
26
27
|
# itself. Changing its visibility may break other gems.
|
27
28
|
def _prefixes #:nodoc:
|
28
29
|
@_prefixes ||= if self.class.scoped_views? && request && devise_mapping
|
@@ -32,6 +33,19 @@ class DeviseController < Devise.parent_controller.constantize
|
|
32
33
|
end
|
33
34
|
end
|
34
35
|
|
36
|
+
# Override internal methods to exclude `_prefixes` from action methods since
|
37
|
+
# we override it above.
|
38
|
+
#
|
39
|
+
# There was an intentional change in Rails 7.1 that will allow it to become
|
40
|
+
# an action method because it's a public method of a non-abstract controller,
|
41
|
+
# but we also can't make this abstract because it can affect potential actions
|
42
|
+
# defined in the parent controller, so instead we ensure `_prefixes` is going
|
43
|
+
# to be considered internal. (and thus, won't become an action method.)
|
44
|
+
# Ref: https://github.com/rails/rails/pull/48699
|
45
|
+
def self.internal_methods #:nodoc:
|
46
|
+
super << :_prefixes
|
47
|
+
end
|
48
|
+
|
35
49
|
protected
|
36
50
|
|
37
51
|
# Gets the actual resource stored in the instance variable
|
@@ -112,7 +126,7 @@ MESSAGE
|
|
112
126
|
end
|
113
127
|
|
114
128
|
if authenticated && resource = warden.user(resource_name)
|
115
|
-
|
129
|
+
set_flash_message(:alert, 'already_authenticated', scope: 'devise.failure')
|
116
130
|
redirect_to after_sign_in_path_for(resource)
|
117
131
|
end
|
118
132
|
end
|
@@ -184,7 +198,7 @@ MESSAGE
|
|
184
198
|
options[:default] = Array(options[:default]).unshift(kind.to_sym)
|
185
199
|
options[:resource_name] = resource_name
|
186
200
|
options = devise_i18n_options(options)
|
187
|
-
I18n.t("#{options[:resource_name]}.#{kind}", options)
|
201
|
+
I18n.t("#{options[:resource_name]}.#{kind}", **options)
|
188
202
|
end
|
189
203
|
|
190
204
|
# Controllers inheriting DeviseController are advised to override this
|