fix(openapi): remove logout route from auth

This commit is contained in:
Mert Şişmanoğlu
2024-08-30 21:10:13 +03:00
parent 21ce46a29e
commit bdb293c181

View File

@@ -186,44 +186,6 @@
}
}
},
"/auth/logout": {
"post": {
"tags": ["auth"],
"description": "Logout",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserSuccessResponse"
}
}
}
},
"422": {
"description": "Unprocessable Content",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
}
}
},
"500": {
"description": "Internal Server Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
}
}
}
}
}
}
},
"/auth/user/:userId": {
"put": {
"tags": ["auth"],