forked from 0x2620/pandora
Rename getTaskStatus -> taskStatus in API docs (fixes #2859)
This commit is contained in:
parent
5a72bf2d48
commit
729856eb30
1 changed files with 3 additions and 3 deletions
|
@ -159,7 +159,7 @@ def addAnnotation(request, data):
|
||||||
... // more annotation properties
|
... // more annotation properties
|
||||||
}
|
}
|
||||||
see: addAnnotations, editAnnotation, findAnnotations, getAnnotation,
|
see: addAnnotations, editAnnotation, findAnnotations, getAnnotation,
|
||||||
getTaskStatus, removeAnnotation
|
taskStatus, removeAnnotation
|
||||||
'''
|
'''
|
||||||
for key in ('item', 'layer', 'in', 'out', 'value'):
|
for key in ('item', 'layer', 'in', 'out', 'value'):
|
||||||
if key not in data:
|
if key not in data:
|
||||||
|
@ -213,10 +213,10 @@ def addAnnotations(request, data):
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
returns {
|
returns {
|
||||||
taskId: string // task id, use `getTaskStatus` to poll
|
taskId: string // task id, use `taskStatus` to poll
|
||||||
}
|
}
|
||||||
see: addAnnotation, editAnnotation, findAnnotations, getAnnotation,
|
see: addAnnotation, editAnnotation, findAnnotations, getAnnotation,
|
||||||
getTaskStatus, removeAnnotation
|
taskStatus, removeAnnotation
|
||||||
'''
|
'''
|
||||||
for key in ('item', 'layer', 'annotations'):
|
for key in ('item', 'layer', 'annotations'):
|
||||||
if key not in data:
|
if key not in data:
|
||||||
|
|
Loading…
Reference in a new issue