2015-08-10 11:05:06 +02:00
|
|
|
class User::SessionsController < Devise::SessionsController
|
2015-08-20 16:41:15 +02:00
|
|
|
# before_filter :configure_sign_in_params, only: [:create]
|
2015-08-10 11:05:06 +02:00
|
|
|
|
|
|
|
# GET /resource/sign_in
|
|
|
|
def new
|
2015-08-20 16:41:15 +02:00
|
|
|
redirect_to url_for(controller: '/start', action: :error_login)
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# POST /resource/sign_in
|
|
|
|
def create
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
# DELETE /resource/sign_out
|
|
|
|
def destroy
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
# protected
|
|
|
|
|
|
|
|
# You can put the params you want to permit in the empty array.
|
|
|
|
# def configure_sign_in_params
|
|
|
|
# devise_parameter_sanitizer.for(:sign_in) << :attribute
|
|
|
|
# end
|
|
|
|
end
|