summaryrefslogtreecommitdiffstats
path: root/openapi.json
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-11-13 09:16:57 +0100
committerJoas Schilling <coding@schilljs.com>2023-11-13 09:24:05 +0100
commit502b927a3d92c6f99662bac7c663a6dc190e7d13 (patch)
tree45a535abccbbcaf6d95e50aae90c6a324ee336c4 /openapi.json
parent4355635848e83a1d531b335be113184b5e02cf23 (diff)
fix(session): Don't attempt to set session state without a session
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'openapi.json')
-rw-r--r--openapi.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/openapi.json b/openapi.json
index 9448f7b87..9c22fb489 100644
--- a/openapi.json
+++ b/openapi.json
@@ -14333,6 +14333,34 @@
}
}
}
+ },
+ "404": {
+ "description": "The participant did not have a session",
+ "content": {
+ "application/json": {
+ "schema": {
+ "type": "object",
+ "required": [
+ "ocs"
+ ],
+ "properties": {
+ "ocs": {
+ "type": "object",
+ "required": [
+ "meta",
+ "data"
+ ],
+ "properties": {
+ "meta": {
+ "$ref": "#/components/schemas/OCSMeta"
+ },
+ "data": {}
+ }
+ }
+ }
+ }
+ }
+ }
}
}
}