Make the admin API update the local policy data

This commit is contained in:
Quentin Gliech
2025-02-25 16:22:42 +01:00
parent fe789884ab
commit 518a366ee2
7 changed files with 66 additions and 3 deletions

View File

@@ -640,6 +640,29 @@
}
}
}
},
"400": {
"description": "Invalid policy data",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"example": {
"errors": [
{
"title": "Failed to instanciate policy with the provided data"
},
{
"title": "invalid policy data"
},
{
"title": "Failed to merge policy data objects"
}
]
}
}
}
}
}
}