fcac133a by Adam Heath

Fix indentation issue.

1 parent 8641efa9
...@@ -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
......