Merge pull request #10344 from demarches-simplifiees/try_proper_fc_fix

Tech: repare le multi france connect
This commit is contained in:
LeSim 2024-04-17 14:36:20 +00:00 committed by GitHub
commit 675327ddc8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,12 +1,12 @@
class FranceConnectParticulierClient < OpenIDConnect::Client
def initialize(code = nil)
config = FRANCE_CONNECT[:particulier]
config = FRANCE_CONNECT[:particulier].deep_dup
# TODO: remove this block when migration to new domain is done
# dirty hack to redirect to the right domain
# if !Rails.env.test? && Current.host != ENV.fetch("APP_HOST")
# config[:redirect_uri] = config[:redirect_uri].gsub(ENV.fetch("APP_HOST"), Current.host)
# end
if !Rails.env.test? && Current.host != ENV.fetch("APP_HOST")
config[:redirect_uri] = config[:redirect_uri].gsub(ENV.fetch("APP_HOST"), Current.host)
end
super(config)