mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-28 01:41:36 +00:00
Fixed bug in gam <UserTypeEntity> create task <TasklistIDEntity>
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
6.64.16
|
||||
|
||||
Fixed bug in `gam <UserTypeEntity> create task <TasklistIDEntity>` that caused a trap
|
||||
when an invalid TaskListID was specified.
|
||||
|
||||
6.64.15
|
||||
|
||||
Updated `lookerstudioassets|lookerstudiopermissions` commands to handle the following error:
|
||||
|
||||
@@ -69063,9 +69063,9 @@ def getTaskMoveAttribute(myarg, kwargs):
|
||||
def processTasks(users):
|
||||
action = Act.Get()
|
||||
if action != Act.CREATE:
|
||||
tasklistTaskEntity = getUserObjectEntity(Cmd.OB_TASKLIST_ID_ENTITY, Ent.TASKLIST)
|
||||
tasklistTaskEntity = getUserObjectEntity(Cmd.OB_TASKLIST_ID_ENTITY, Ent.TASK)
|
||||
else:
|
||||
tasklistTaskEntity = getUserObjectEntity(Cmd.OB_TASKLIST_ID_TASK_ID_ENTITY, Ent.TASKLIST)
|
||||
tasklistTaskEntity = getUserObjectEntity(Cmd.OB_TASKLIST_ID_TASK_ID_ENTITY, Ent.TASK)
|
||||
if action in {Act.DELETE, Act.CLEAR}:
|
||||
FJQC = None
|
||||
checkForExtraneousArguments()
|
||||
@@ -69103,6 +69103,7 @@ def processTasks(users):
|
||||
tasklist, task = tasklistTask.split('/', 1)
|
||||
else:
|
||||
tasklist = tasklistTask
|
||||
task = body.get('title', '')
|
||||
try:
|
||||
if action == Act.DELETE:
|
||||
callGAPI(svc.tasks(), 'delete',
|
||||
|
||||
Reference in New Issue
Block a user