Fix indentation issue.
Showing
1 changed file
with
6 additions
and
6 deletions
... | @@ -85,12 +85,12 @@ if (ksc) { | ... | @@ -85,12 +85,12 @@ if (ksc) { |
85 | 85 | ||
86 | if (accessToken) { | 86 | if (accessToken) { |
87 | def subject = accessToken.getSubject() | 87 | def subject = accessToken.getSubject() |
88 | EntityValue userAccount = ec.entity.find('UserAccount').condition('externalUserId', subject).disableAuthz().one() | 88 | EntityValue userAccount = ec.entity.find('UserAccount').condition('externalUserId', subject).disableAuthz().one() |
89 | ec.logger.info("userAccount: ${userAccount}") | 89 | ec.logger.info("userAccount: ${userAccount}") |
90 | if (userAccount) { | 90 | if (userAccount) { |
91 | //ec.user.pushUser(userAccount.username) | 91 | //ec.user.pushUser(userAccount.username) |
92 | ec.user.internalLoginUser(userAccount.username) | 92 | ec.user.internalLoginUser(userAccount.username) |
93 | } | 93 | } |
94 | } | 94 | } |
95 | } | 95 | } |
96 | 96 | ... | ... |
-
Please register or sign in to post a comment