engine/app/controllers/locomotive/passwords_controller.rb

14 lines
249 B
Ruby

module Locomotive
class PasswordsController < ::Devise::PasswordsController
include Locomotive::Routing::SiteDispatcher
layout '/locomotive/layouts/not_logged_in'
before_filter :require_site
helper 'locomotive/base'
end
end