demarches-normaliennes/app/models/france_connect_particulier_client.rb
2024-03-07 12:14:58 +01:00

16 lines
463 B
Ruby

class FranceConnectParticulierClient < OpenIDConnect::Client
def initialize(code = nil)
config = FRANCE_CONNECT[:particulier]
# TODO: remove this block when migration to new domain is done
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)
if code.present?
self.authorization_code = code
end
end
end