feat: zvýraznění dnů v historii obsahujících objednávky
CI / Generate TypeScript types (push) Successful in 12s
CI / Server unit tests (push) Successful in 20s
CI / Build server (push) Successful in 24s
CI / Build client (push) Successful in 36s
CI / Playwright E2E tests (push) Successful in 1m17s
CI / Build and push Docker image (push) Successful in 40s
CI / Notify (push) Successful in 2s
CI / Generate TypeScript types (push) Successful in 12s
CI / Server unit tests (push) Successful in 20s
CI / Build server (push) Successful in 24s
CI / Build client (push) Successful in 36s
CI / Playwright E2E tests (push) Successful in 1m17s
CI / Build and push Docker image (push) Successful in 40s
CI / Notify (push) Successful in 2s
This commit is contained in:
@@ -82,6 +82,8 @@ paths:
|
||||
$ref: "./paths/changelogs/getChangelogs.yml"
|
||||
|
||||
# Skupiny objednávek (/api/groups)
|
||||
/groups/dates:
|
||||
$ref: "./paths/groups/getOrderDates.yml"
|
||||
/groups/create:
|
||||
$ref: "./paths/groups/createGroup.yml"
|
||||
/groups/delete:
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
get:
|
||||
operationId: getOrderDates
|
||||
summary: Vrátí seznam dnů, pro které existuje alespoň jedna objednávková skupina.
|
||||
responses:
|
||||
"200":
|
||||
description: Seznam dnů s objednávkou
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
type: object
|
||||
required:
|
||||
- dates
|
||||
properties:
|
||||
dates:
|
||||
description: Pole ISO dat (YYYY-MM-DD) s alespoň jednou skupinou
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
format: date
|
||||
Reference in New Issue
Block a user