account controller not finished

This commit is contained in:
merdiano 2022-07-14 17:26:35 +05:00
parent f34a9fd970
commit b71b72d5f2
1 changed files with 42 additions and 0 deletions

View File

@ -5,6 +5,48 @@
"version": "1.0.0" "version": "1.0.0"
}, },
"paths": { "paths": {
"/api/account": {
"get": {
"tags": [
"Account"
],
"summary": " - Get client account",
"operationId": "c06e230ba97d6235e98afbfec6d4a8a9",
"responses": {
"200": {
"description": "OK"
},
"401": {
"description": "Unauthorized"
}
},
"security": [
{
"bearerAuth": []
}
]
},
"post": {
"tags": [
"Authorization"
],
"summary": " - Update account",
"operationId": "2de5743bd87f04fc0cd5f63d0a630959",
"responses": {
"200": {
"description": "OK"
},
"401": {
"description": "Unauthorized"
}
},
"security": [
{
"bearerAuth": []
}
]
}
},
"/api/login": { "/api/login": {
"post": { "post": {
"tags": [ "tags": [