File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed
ogc_api_processes_fastapi Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -35,14 +35,6 @@ class RouteConfig(BaseModel):
35
35
methods = ["GET" ],
36
36
client_method = "get_process" ,
37
37
),
38
- "PostProcessExecute" : RouteConfig (
39
- path = "/processes/{process_id}/execute" ,
40
- summary = "Execution of a process" ,
41
- methods = ["POST" ],
42
- status_code = 201 ,
43
- client_method = "post_process_execution" ,
44
- deprecated = True ,
45
- ),
46
38
"PostProcessExecution" : RouteConfig (
47
39
path = "/processes/{process_id}/execution" ,
48
40
summary = "Execution of a process" ,
Original file line number Diff line number Diff line change @@ -322,7 +322,6 @@ def delete_job(
322
322
"GetJob" : create_get_job_endpoint ,
323
323
"GetJobResults" : create_get_job_results_endpoint ,
324
324
"DeleteJob" : create_delete_job_endpoint ,
325
- "PostProcessExecute" : create_post_process_execution_endpoint ,
326
325
}
327
326
328
327
You can’t perform that action at this time.
0 commit comments