aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_status/openapi.json
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2024-12-11 10:23:02 +0100
committerprovokateurin <kate@provokateurin.de>2024-12-18 10:52:41 +0100
commit5c360e0367da488febba66325082158725207801 (patch)
tree9a3a8d9757fc98023ede8fbc2892a1eeda3dc6f1 /apps/user_status/openapi.json
parent654a7d22ff714c4a5a0769bb9d32a509cbb39ac3 (diff)
downloadnextcloud-server-5c360e0367da488febba66325082158725207801.tar.gz
nextcloud-server-5c360e0367da488febba66325082158725207801.zip
fix(user_status): Catch non-existing user status when setting custom user status
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'apps/user_status/openapi.json')
-rw-r--r--apps/user_status/openapi.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/apps/user_status/openapi.json b/apps/user_status/openapi.json
index 580f17e334d..861ba343aba 100644
--- a/apps/user_status/openapi.json
+++ b/apps/user_status/openapi.json
@@ -1016,6 +1016,34 @@
}
}
}
+ },
+ "404": {
+ "description": "No status for the current user",
+ "content": {
+ "application/json": {
+ "schema": {
+ "type": "object",
+ "required": [
+ "ocs"
+ ],
+ "properties": {
+ "ocs": {
+ "type": "object",
+ "required": [
+ "meta",
+ "data"
+ ],
+ "properties": {
+ "meta": {
+ "$ref": "#/components/schemas/OCSMeta"
+ },
+ "data": {}
+ }
+ }
+ }
+ }
+ }
+ }
}
}
}