Debug booking

This commit is contained in:
mr
2024-08-26 11:18:26 +02:00
parent ad46694516
commit 5b320bb409
13 changed files with 158 additions and 49 deletions

View File

@@ -83,7 +83,7 @@
}
}
},
"/workflow/check/{start_date}/{end_date}": {
"/workflow/check/{id}/{start_date}/{end_date}": {
"get": {
"tags": [
"workflow"
@@ -91,12 +91,17 @@
"description": "check booking\n\u003cbr\u003e",
"operationId": "WorkflowController.Check",
"parameters": [
{
"in": "path",
"name": "id",
"description": "the booking workflow id",
"type": "string"
},
{
"in": "path",
"name": "start_date",
"description": "2006-01-02T15:04:05",
"type": "string",
"default": "the booking start date"
"description": "the booking start date format 2006-01-02T15:04:05",
"type": "string"
},
{
"in": "path",