engine/app/controllers/admin/passwords_controller.rb

14 lines
235 B
Ruby
Raw Normal View History

module Admin
class PasswordsController < Devise::PasswordsController
include Locomotive::Routing::SiteDispatcher
2010-04-22 23:52:11 +00:00
layout '/admin/layouts/box'
before_filter :require_site
helper 'admin/base', 'admin/box'
end
end