mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge pull request #820 from janakamarasena/bug-fixes-2
Added tenant domain to username in AccessToken grant
This commit is contained in:
commit
96c650f699
@ -96,7 +96,7 @@ public class AccessTokenGrantHandler extends AbstractAuthorizationGrantHandler {
|
||||
}
|
||||
if (response != null && response.isValid()) {
|
||||
authStatus = true;
|
||||
username = response.getUserName();
|
||||
username = response.getUserName() + "@" + response.getTenantDomain();
|
||||
userTenantDomain = MultitenantUtils.getTenantDomain(username);
|
||||
spTenantDomain = response.getTenantDomain();
|
||||
} else if (response != null && !response.isValid()) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user