Skip to content

Commit ede5d03

Browse files
committedApr 11, 2012
Updates the standard Devise modules (off of Bushido) to match the database migrations
1 parent 40d8add commit ede5d03

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed
 

‎config/initializers/kandan.rb

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22
require file
33
end
44

5-
65
module Kandan
76
def self.devise_modules
8-
standard = [:database_authenticatable, :registerable, :confirmable,
9-
:recoverable, :rememberable, :trackable, :validatable, :token_authenticatable]
10-
bushido = [:bushido_authenticatable, :trackable, :token_authenticatable]
7+
8+
standard = [:database_authenticatable, :registerable,
9+
:recoverable, :rememberable, :trackable, :validatable]
10+
11+
bushido = [:bushido_authenticatable, :trackable,
12+
:token_authenticatable]
1113

1214
::Bushido::Platform.on_bushido? ? bushido : standard
1315
end

0 commit comments

Comments
 (0)
Please sign in to comment.