From 1cbe8297aad9a6b88be35f74faf9ab1a14d48a2b Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 15 Jan 2019 16:36:07 -0500 Subject: [PATCH] add support for archiving user, no details avail on what it does yet, leave undocumented till then --- src/gam.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gam.py b/src/gam.py index 9a0dc98e..729baecd 100755 --- a/src/gam.py +++ b/src/gam.py @@ -6699,6 +6699,9 @@ def getUserAttributes(i, cd, updateCmd): elif myarg == u'suspended': body[u'suspended'] = getBoolean(sys.argv[i+1], myarg) i += 2 + elif myarg == u'archived': + body[u'archived'] = getBoolean(sys.argv[i+1], myarg) + i += 2 elif myarg == u'gal': body[u'includeInGlobalAddressList'] = getBoolean(sys.argv[i+1], myarg) i += 2