engine/app/controllers/locomotive/sessions_controller.rb

24 lines
427 B
Ruby
Raw Normal View History

module Locomotive
2011-11-06 11:18:34 +00:00
class SessionsController < ::Devise::SessionsController
include Locomotive::Routing::SiteDispatcher
2010-04-22 23:52:11 +00:00
layout '/locomotive/layouts/not_logged_in'
before_filter :require_site
helper 'locomotive/base'
protected
def after_sign_in_path_for(resource)
pages_url
end
def after_sign_out_path_for(resource)
request.protocol + request.host_with_port
end
end
end