mirror of
https://github.com/GAM-team/GAM.git
synced 2025-07-10 14:43:34 +00:00
Favor request (#658)
In my version, gam user foo add calendar xxx ... adds a calendar to foo's list of calendars just like your version In my version, gam user foo create calendar xxx ... creates calendar xxx for foo This change reserves a spot for your version to create a calendar and avoids compatibilty issues going forward
This commit is contained in:
@ -12701,7 +12701,11 @@ def ProcessGAMCommand(args):
|
||||
elif command in [u'add', u'create']:
|
||||
addWhat = sys.argv[4].lower()
|
||||
if addWhat == u'calendar':
|
||||
addCalendar(users)
|
||||
if command == u'add':
|
||||
addCalendar(users)
|
||||
else:
|
||||
print u'ERROR: %s is not implemented for "gam <users> %s"' % (addWhat, command)
|
||||
sys.exit(2)
|
||||
elif addWhat == u'drivefile':
|
||||
createDriveFile(users)
|
||||
elif addWhat in [u'license', u'licence']:
|
||||
|
Reference in New Issue
Block a user