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,26 @@
meta {
name: shipments
}
auth {
mode: inherit
}
vars:pre-request {
Route: shipments
ExamplePOSTBody: '''
{
"name": "test",
"date": "2026-01-10",
"product_ids": [1],
"form_id": 3
}
'''
ExamplePUTBody: '''
{
"name": "updatedtestt",
"date": "2026-01-10",
"product_ids": [2]
}
'''
}