engine/app/controllers/admin/passwords_controller.rb

13 lines
241 B
Ruby

module Admin
class PasswordsController < Devise::PasswordsController
include Locomotive::Routing::SiteDispatcher
layout 'admin/login'
before_filter :require_site
helper 'admin/base', 'admin/login'
end
end