Initial guest user support

This commit is contained in:
Ross Scroggs
2026-02-24 14:45:03 -08:00
parent 7e7b8416a4
commit 8dbc455407
3 changed files with 16 additions and 1 deletions

View File

@@ -46011,7 +46011,10 @@ def doCreateGuestUser():
result = callGAPI(cd.users(), 'createGuest',
throwReasons=[GAPI.FAILED_PRECONDITION],
body=body)
entityActionPerformed([Ent.GUEST_USER, result['primaryGuestEmail']])
entityActionPerformed([Ent.GUEST_USER, body['primaryGuestEmail']])
Ind.Increment()
showJSON(None, result)
Ind.Decrement()
except (GAPI.failedPrecondition) as e:
entityActionFailedExit([Ent.GUEST_USER, body['primaryGuestEmail']], str(e))