2015-12-09 15:10:11 +01:00
|
|
|
class Gestionnaires::SessionsController < Sessions::SessionsController
|
2016-02-15 17:13:16 +01:00
|
|
|
def demo
|
2016-02-19 15:04:29 +01:00
|
|
|
return redirect_to root_path if Rails.env.production?
|
|
|
|
|
2017-01-03 10:40:09 +01:00
|
|
|
@user = User.new(email: DemoEmails[:gestionnaire], password: 'password')
|
|
|
|
render 'users/sessions/new'
|
2016-02-15 17:13:16 +01:00
|
|
|
end
|
2015-09-22 10:15:12 +02:00
|
|
|
|
|
|
|
def new
|
2017-01-03 10:43:04 +01:00
|
|
|
redirect_to new_user_session_path
|
2015-09-22 10:15:12 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_sign_in_path_for(resource)
|
|
|
|
# stored_location_for(resource) ||
|
|
|
|
backoffice_path
|
|
|
|
end
|
|
|
|
end
|