engine/app/controllers/locomotive/passwords_controller.rb

14 lines
255 B
Ruby
Raw Normal View History

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