heartcombo--devise/lib/devise/modules.rb

31 lines
1.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'active_support/core_ext/object/with_options'
2014-02-25 16:42:55 +00:00
Devise.with_options model: true do |d|
# Strategies first
2014-02-25 16:42:55 +00:00
d.with_options strategy: true do |s|
2010-07-13 08:09:55 +00:00
routes = [nil, :new, :destroy]
2014-02-25 16:42:55 +00:00
s.add_module :database_authenticatable, controller: :sessions, route: { session: routes }
s.add_module :rememberable, no_input: true
end
2010-07-12 16:56:27 +00:00
# Other authentications
2014-02-25 16:42:55 +00:00
d.add_module :omniauthable, controller: :omniauth_callbacks, route: :omniauth_callback
2010-07-12 16:56:27 +00:00
# Misc after
2010-07-13 08:09:55 +00:00
routes = [nil, :new, :edit]
2014-02-25 16:42:55 +00: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 08:09:55 +00:00
routes = [nil, :new]
2014-02-25 16:42:55 +00: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 08:03:32 +00:00
end