diff options
author | Nobody <git@n0bodysec.com> | 2022-03-08 10:52:48 -0300 |
---|---|---|
committer | Erkin Alp Güney <erkinalp9035@gmail.com> | 2022-03-08 18:08:32 +0300 |
commit | 9f21567d9efa67b2aec9a53123cfed4ade6cf462 (patch) | |
tree | 0bde2269bd562050e274e9f8c4af1d0341e7697f | |
parent | fix(api): don't send @everyone in route response (diff) | |
download | server-9f21567d9efa67b2aec9a53123cfed4ade6cf462.tar.xz |
fix(api): working invisible status type
-rw-r--r-- | api/assets/openapi.json | 4 | ||||
-rw-r--r-- | api/assets/schemas.json | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/api/assets/openapi.json b/api/assets/openapi.json index 1af0600d..03550323 100644 --- a/api/assets/openapi.json +++ b/api/assets/openapi.json @@ -3119,7 +3119,7 @@ "type": "boolean" }, "status": { - "enum": ["dnd", "idle", "offline", "online"], + "enum": ["dnd", "idle", "offline", "online", "invisible"], "type": "string" }, "stream_notifications_enabled": { @@ -5677,7 +5677,7 @@ "type": "boolean" }, "status": { - "enum": ["dnd", "idle", "offline", "online"], + "enum": ["dnd", "idle", "offline", "online", "invisible"], "type": "string" }, "stream_notifications_enabled": { diff --git a/api/assets/schemas.json b/api/assets/schemas.json index 4ffa44b8..d531df21 100644 --- a/api/assets/schemas.json +++ b/api/assets/schemas.json @@ -7897,7 +7897,7 @@ "type": "boolean" }, "status": { - "enum": ["dnd", "idle", "offline", "online"], + "enum": ["dnd", "idle", "offline", "online", "invisible"], "type": "string" }, "stream_notifications_enabled": { |