FC ParticulierControllerSpec: callback handle empty string

This commit is contained in:
simon lehericey 2018-01-16 13:45:12 +01:00 committed by Simon Lehericey
parent 9b6b6bde97
commit 4f86b6305b
2 changed files with 15 additions and 6 deletions

View file

@ -29,7 +29,7 @@ class FranceConnect::ParticulierController < ApplicationController
private
def redirect_to_login_if_fc_aborted
if params[:code].nil?
if params[:code].empty?
redirect_to new_user_session_path
end
end