chore: add empty endpoint to be implemented
This commit is contained in:
parent
efaccdd293
commit
ff4c100497
1 changed files with 8 additions and 0 deletions
|
|
@ -323,6 +323,14 @@ export class TaskActionController extends Controller {
|
|||
});
|
||||
});
|
||||
}
|
||||
|
||||
@Post("submit")
|
||||
@Security("keycloak")
|
||||
async submitTaskOrder(@Request() req: RequestWithUser, @Path() taskId: string) {}
|
||||
|
||||
@Post("cancel")
|
||||
@Security("keycloak")
|
||||
async cancelTaskOrder(@Request() req: RequestWithUser, @Path() taskId: string) {}
|
||||
}
|
||||
|
||||
@Route("api/v1/task-order/{taskId}")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue