Updated TODO list.

This commit is contained in:
José Valim 2009-10-09 10:34:19 -03:00
parent c0b272a49d
commit c39c668f20
1 changed files with 13 additions and 2 deletions

15
TODO
View File

@ -2,9 +2,13 @@
* PasswordsController
* ConfirmationsController
* Add mappings
Devise.map :users, :to => User, :for => [:authenticable, :recoverable, :confirmable], :as => :usuario
* Customizable layout in engine controllers
Devise.layout do |controller|
Devise.layout do |resource|
# define layout to be called
end
@ -12,10 +16,17 @@
* Add remember me (with customizable time frame)
* Vendor RailsWarden
* Create generators
* Allow stretches and pepper per model
* Allow multiple models per controller
* devise :authenticable, :confirmable, :recoverable
* Devise::BruteForceProtection
* Show generic messages on login in case of failures (optionable)
* Show generic messages on login in case of failures (option)
* Devise::MagicColumns
* Devise::Invitable
* Devise::Migratable
== Done