mirror of
https://github.com/heartcombo/devise.git
synced 2026-04-28 03:00:29 -04:00
10 lines
245 B
Ruby
10 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
|