19 lines
314 B
Ruby
19 lines
314 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'
|
|
|
|
def edit
|
|
logger.debug 'I am here'
|
|
super
|
|
end
|
|
|
|
end
|
|
end
|