File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
app/code/Magento/AdminAdobeIms Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class ImsConfig extends Config
2929 public const XML_PATH_PROFILE_URL = 'adobe_ims/integration/profile_url ' ;
3030 public const XML_PATH_NEW_ADMIN_EMAIL_TEMPLATE = 'adobe_ims/email/content_template ' ;
3131 public const XML_PATH_VALIDATE_TOKEN_URL = 'adobe_ims/integration/validate_token_url ' ;
32- public const XML_PATH_LOGOUT_URI = 'adobe_ims/integration/logout_uri ' ;
32+ public const XML_PATH_ADMIN_LOGOUT_URL = 'adobe_ims/integration/admin_logout_url ' ;
3333 public const XML_PATH_CERTIFICATE_PATH = 'adobe_ims/integration/certificate_path ' ;
3434 public const XML_PATH_ADMIN_AUTH_URL_PATTERN = 'adobe_ims/integration/admin/auth_url_pattern ' ;
3535 public const XML_PATH_ADMIN_REAUTH_URL_PATTERN = 'adobe_ims/integration/admin/reauth_url_pattern ' ;
@@ -353,7 +353,7 @@ public function getBackendLogoutUrl(string $accessToken) : string
353353 return str_replace (
354354 ['#{access_token} ' , '#{client_secret} ' , '#{client_id} ' ],
355355 [$ accessToken , $ this ->getPrivateKey (), $ this ->getApiKey ()],
356- $ this ->scopeConfig ->getValue (self ::XML_PATH_LOGOUT_URI )
356+ $ this ->scopeConfig ->getValue (self ::XML_PATH_ADMIN_LOGOUT_URL )
357357 );
358358 }
359359
Original file line number Diff line number Diff line change 2727 <token_url >https://ims-na1.adobelogin.com/ims/token</token_url >
2828 <profile_url ><![CDATA[ https://ims-na1.adobelogin.com/ims/profile/v1?client_id=#{client_id}]]> </profile_url >
2929 <organization_membership_url ><![CDATA[ https://graph.identity.adobe.com/#{org_id}@AdobeOrg/membership]]> </organization_membership_url >
30- <logout_uri ><![CDATA[ https://ims-na1.adobelogin.com/ims/logout/v1?access_token=#{access_token}&client_id=#{client_id}&client_secret=#{client_secret}]]> </logout_uri >
30+ <admin_logout_url ><![CDATA[ https://ims-na1.adobelogin.com/ims/logout/v1?access_token=#{access_token}&client_id=#{client_id}&client_secret=#{client_secret}]]> </admin_logout_url >
3131 <certificate_path ><![CDATA[ https://static.adobelogin.com/keys/prod/]]> </certificate_path >
3232 <validate_token_url ><![CDATA[ https://ims-na1.adobelogin.com/ims/validate_token/v1?token=#{token}&client_id=#{client_id}&type=#{token_type}]]> </validate_token_url >
3333 </integration >
You can’t perform that action at this time.
0 commit comments