20 lines
320 B
Ruby
20 lines
320 B
Ruby
module Admin
|
|
class SessionsController < Devise::SessionsController
|
|
|
|
include Locomotive::Routing::SiteDispatcher
|
|
|
|
layout '/admin/layouts/box'
|
|
|
|
before_filter :require_site
|
|
|
|
helper 'admin/base', 'admin/box'
|
|
|
|
protected
|
|
|
|
def after_sign_in_path_for(resource)
|
|
admin_pages_url
|
|
end
|
|
|
|
end
|
|
end
|