add crud for forms, templates, shipment, users and auth with keycloak

This commit is contained in:
2026-02-09 23:38:22 +01:00
parent 145f3f632e
commit be7ca58513
45 changed files with 949 additions and 226 deletions

View File

@@ -0,0 +1,31 @@
meta {
name: forms
}
auth {
mode: inherit
}
vars:pre-request {
Route: forms
ExamplePOSTBody: '''
{
"productor_id": 1,
"referer_id": 1,
"season": "Hiver-2026",
"shipments": 5,
"start": "2026-01-10",
"end": "2026-05-10"
}
'''
ExamplePUTBody: '''
{
"productor_id": 1,
"referer_id": 1,
"season": "updatedHiver-2026",
"shipments": 7,
"start": "2026-01-10",
"end": "2026-05-10"
}
'''
}