1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00
heartcombo--devise/lib/devise/modules.rb

31 lines
1.1 KiB
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
require 'active_support/core_ext/object/with_options'
2014-02-25 11:42:55 -05:00
Devise.with_options model: true do |d|
# Strategies first
2014-02-25 11:42:55 -05:00
d.with_options strategy: true do |s|
2010-07-13 04:09:55 -04:00
routes = [nil, :new, :destroy]
2014-02-25 11:42:55 -05:00
s.add_module :database_authenticatable, controller: :sessions, route: { session: routes }
s.add_module :rememberable, no_input: true
end
2010-07-12 12:56:27 -04:00
# Other authentications
2014-02-25 11:42:55 -05:00
d.add_module :omniauthable, controller: :omniauth_callbacks, route: :omniauth_callback
2010-07-12 12:56:27 -04:00
# Misc after
2010-07-13 04:09:55 -04:00
routes = [nil, :new, :edit]
2014-02-25 11:42:55 -05:00
d.add_module :recoverable, controller: :passwords, route: { password: routes }
d.add_module :registerable, controller: :registrations, route: { registration: (routes << :cancel) }
d.add_module :validatable
# The ones which can sign out after
2010-07-13 04:09:55 -04:00
routes = [nil, :new]
2014-02-25 11:42:55 -05:00
d.add_module :confirmable, controller: :confirmations, route: { confirmation: routes }
d.add_module :lockable, controller: :unlocks, route: { unlock: routes }
d.add_module :timeoutable
# Stats for last, so we make sure the user is really signed in
d.add_module :trackable
2013-12-05 03:03:32 -05:00
end