demarches-normaliennes/app/controllers/gestionnaires/sessions_controller.rb

22 lines
456 B
Ruby
Raw Normal View History

class Gestionnaires::SessionsController < Sessions::SessionsController
def demo
return redirect_to root_path if Rails.env.production?
@gestionnaire = Gestionnaire.new(email: 'gestionnaire@apientreprise.fr', password: 'password')
render 'new'
end
2015-09-22 10:15:12 +02:00
def new
@gestionnaire = Gestionnaire.new
end
def create
super
end
def after_sign_in_path_for(resource)
# stored_location_for(resource) ||
backoffice_path
end
end