diff options
| author | Xinhui | 2016-08-08 11:16:59 +0200 |
|---|---|---|
| committer | Xinhui | 2016-08-08 11:16:59 +0200 |
| commit | fabaf9b63e9cb7ecb0f4cd84bb15fda536e8f5b3 (patch) | |
| tree | ea1186491d9a6db968943e421652feaa15f23fe2 /app | |
| parent | ac6af39ce23b917e62b29b52396f8eb9e68e5e5c (diff) | |
| download | chouette-core-fabaf9b63e9cb7ecb0f4cd84bb15fda536e8f5b3.tar.bz2 | |
Set :lockable to model User
Diffstat (limited to 'app')
| -rw-r--r-- | app/models/user.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index 3233b5efb..3262001f3 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -5,7 +5,7 @@ class User < ActiveRecord::Base @@authentication_type = "#{Rails.application.config.chouette_authentication_settings[:type]}_authenticatable".to_sym cattr_reader :authentication_type - devise :invitable, :registerable, :validatable, + devise :invitable, :registerable, :validatable, :lockable, :recoverable, :rememberable, :trackable, :async, authentication_type # FIXME https://github.com/nbudin/devise_cas_authenticatable/issues/53 |
