fix: multi FC do not change const
This commit is contained in:
parent
e01e98c05f
commit
ca4ab4cfe1
1 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue