mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
openapi: Fix DELETE /users/me status 200 response description.
If you look at line number 1121 (new) of commit 14c0a387cf,
I seem to have accidently set the description for a status
200 response to "Bad Request" instead of "Success" which
is what it really is. It's basically an ugly typo (maybe
due to hastily copy-pasting the template).
Signed-off-by: Hemanth V. Alluri <hdrive1999@gmail.com>
This commit is contained in:
committed by
Tim Abbott
parent
4e8b087c82
commit
31a5e0b441
@@ -4404,7 +4404,7 @@ paths:
|
|||||||
Delete the requesting user from the realm.
|
Delete the requesting user from the realm.
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
description: Bad Request
|
description: Success.
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
@@ -4412,7 +4412,7 @@ paths:
|
|||||||
- $ref: "#/components/schemas/JsonSuccess"
|
- $ref: "#/components/schemas/JsonSuccess"
|
||||||
- example: {"msg": "", "result": "success"}
|
- example: {"msg": "", "result": "success"}
|
||||||
"400":
|
"400":
|
||||||
description: Bad Request
|
description: Bad Request.
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
|
|||||||
Reference in New Issue
Block a user