add support for archiving user, no details avail on what it does yet, leave undocumented till then

This commit is contained in:
Jay Lee
2019-01-15 16:36:07 -05:00
parent 5b8fcebabd
commit 1cbe8297aa

View File

@@ -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