Skip to content
Snippets Groups Projects
Commit f977c1bf authored by fol0037's avatar fol0037
Browse files

Merge branch 'devel' into 'testing'

Devel

See merge request !27
parents ce1c8610 e8388b29
No related branches found
No related tags found
2 merge requests!33NEW PROD PHASE merge,!27Devel
Pipeline #4243 failed
......@@ -93,11 +93,11 @@ def index():
return {"message": "This is a LEXIS HPC command APP API. Command templates should be available on HEAppE instance."}, 201
@hpc_command_api.post("/create-container-application", responses={"201": EndpointResponse,
"400": EndpointResponse,
"401": EndpointResponse,
"403": EndpointResponse,
"500": EndpointResponse})
@hpc_command_api.post("/create-hpc-command-application", responses={"201": EndpointResponse,
"400": EndpointResponse,
"401": EndpointResponse,
"403": EndpointResponse,
"500": EndpointResponse})
@requires_authentication
def create_command_app(body: HPCCommandAppBody):
# OBTAIN BODY ---------------------------------------------------------------------------------------
......@@ -202,11 +202,11 @@ def create_command_app(body: HPCCommandAppBody):
return ResponseMessages.bad_server()
@hpc_command_api.post("/update-container-application-params", responses={"201": EndpointResponse,
"400": EndpointResponse,
"401": EndpointResponse,
"403": EndpointResponse,
"500": EndpointResponse})
@hpc_command_api.post("/update-hpc-command-application-params", responses={"201": EndpointResponse,
"400": EndpointResponse,
"401": EndpointResponse,
"403": EndpointResponse,
"500": EndpointResponse})
@requires_authentication
def update_command_app_params(body: UpdateHPCCommandAppParamsBody):
# OBTAIN BODY
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment