Skip to content

Commit 5b015e0

Browse files
committed
CH-226 fix workflows API endpoint
1 parent 2198019 commit 5b015e0

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

applications/workflows/server/workflows_api/controllers/create_and_access_controller.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def get_operation(name): # noqa: E501
5151
return f'Unexpected error', e.status
5252

5353

54-
def list_operations(status=None, previous_search_token=None, limit=None): # noqa: E501
54+
def list_operations(status=None, previous_search_token=None, limit=None, body=None): # noqa: E501
5555
"""lists operations
5656
5757
see all operations for the user # noqa: E501
@@ -62,6 +62,8 @@ def list_operations(status=None, previous_search_token=None, limit=None): # noq
6262
:type previous_search: dict | bytes
6363
:param limit: maximum number of records to return per page
6464
:type limit: int
65+
:param body: unused body parameter (Connexion compatibility)
66+
:type body: dict | bytes
6567
6668
:rtype: OperationSearchResult
6769
"""

0 commit comments

Comments
 (0)