mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
Update README, CHANGELOG and TODO.
This commit is contained in:
parent
0b825958b2
commit
56f6282c22
3 changed files with 26 additions and 32 deletions
|
@ -3,6 +3,9 @@
|
|||
* bug fixes
|
||||
* Fixed requiring devise strategies
|
||||
|
||||
* optimize
|
||||
* Do not load hooks or strategies if they are not used
|
||||
|
||||
== 0.1.1
|
||||
|
||||
* bug fixes
|
||||
|
@ -10,9 +13,23 @@
|
|||
|
||||
== 0.1.0
|
||||
|
||||
* Authenticable
|
||||
* Confirmable
|
||||
* Migratable
|
||||
* Recoverable
|
||||
* Rememberable
|
||||
* Validatable
|
||||
* Devise::Authenticable
|
||||
* Devise::Confirmable
|
||||
* Devise::Recoverable
|
||||
* Devise::Validatable
|
||||
* Devise::Migratable
|
||||
* Devise::Rememberable
|
||||
|
||||
* SessionsController
|
||||
* PasswordsController
|
||||
* ConfirmationsController
|
||||
|
||||
* Create an example app
|
||||
* devise :all, :except => :rememberable
|
||||
* Use sign_in and sign_out in SessionsController
|
||||
|
||||
* Mailer subjects namespaced by model
|
||||
* Allow stretches and pepper per model
|
||||
|
||||
* Store session[:return_to] in session
|
||||
* Sign user in automatically after confirming or changing it's password
|
||||
|
|
|
@ -68,7 +68,9 @@ Now let's setup a User model adding the devise line to have your authentication
|
|||
devise
|
||||
end
|
||||
|
||||
This line adds devise authenticable automatically for you inside your User class. You could also include the other modules as below:
|
||||
This line adds devise authenticable automatically for you inside your User class. It uses @attr_accessible@, so be sure to use attr_accessible in your next attributes as well.
|
||||
|
||||
You could also include the other devise modules as below:
|
||||
|
||||
# Same as using only devise, authenticable is activated by default
|
||||
devise :authenticable
|
||||
|
|
25
TODO
25
TODO
|
@ -9,29 +9,4 @@
|
|||
* Devise::MagicColumns
|
||||
* Devise::Invitable
|
||||
|
||||
== Done
|
||||
|
||||
* Devise::Authenticable
|
||||
* Devise::Confirmable
|
||||
* Devise::Recoverable
|
||||
* Devise::Validatable
|
||||
* Devise::Migratable
|
||||
* SessionsController
|
||||
* PasswordsController
|
||||
* ConfirmationsController
|
||||
* Create an example app
|
||||
* devise :authenticable, :confirmable, :recoverable for ActiveRecord
|
||||
* Allow multiple models per controller
|
||||
* Add mappings
|
||||
* Use sign_in and sign_out in SessionsController
|
||||
* Use path_names in routes
|
||||
* Store session[:return_to] in session
|
||||
* Clear perishable_token in :confirmable and :recoverable
|
||||
* Remove perishable token and create attributes for confirmation_token and reset_password_token
|
||||
* Add confirmation_sent_at for confirmable
|
||||
* Add confirmable filters
|
||||
* Sign user in automatically after confirming or changing it's password
|
||||
|
||||
* Add remember me
|
||||
* Mailer subjects namespaced by model
|
||||
* Allow stretches and pepper per model
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue