mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
9 lines
245 B
Ruby
9 lines
245 B
Ruby
module SharedAdmin
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
devise :database_authenticatable, :encryptable, :registerable,
|
|
:timeoutable, :recoverable, :rememberable, :lockable,
|
|
:unlock_strategy => :time
|
|
end
|
|
end
|