11 lines
191 B
Ruby
11 lines
191 B
Ruby
module Admin
|
|
class PasswordsController < Devise::PasswordsController
|
|
|
|
include Locomotive::Routing::SiteDispatcher
|
|
|
|
layout 'login'
|
|
|
|
before_filter :require_site
|
|
|
|
end
|
|
end |