14 lines
255 B
Ruby
14 lines
255 B
Ruby
module Locomotive
|
|
class PasswordsController < Devise::PasswordsController
|
|
|
|
include Locomotive::Routing::SiteDispatcher
|
|
|
|
layout '/locomotive/layouts/box'
|
|
|
|
before_filter :require_site
|
|
|
|
helper 'locomotive/base', 'locomotive/box'
|
|
|
|
end
|
|
end
|