Alejandra
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
13 additions and
0 deletions
-
frontend/src/client/services.ts
|
@ -218,6 +218,19 @@ requestBody, |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Delete User Me |
|
|
|
|
|
* Delete own user. |
|
|
|
|
|
* @returns Message Successful Response |
|
|
|
|
|
* @throws ApiError |
|
|
|
|
|
*/ |
|
|
|
|
|
public static deleteUserMe(): CancelablePromise<Message> { |
|
|
|
|
|
return __request(OpenAPI, { |
|
|
|
|
|
method: 'DELETE', |
|
|
|
|
|
url: '/api/v1/users/me', |
|
|
|
|
|
}); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* Update User Me |
|
|
* Update User Me |
|
|
* Update own user. |
|
|
* Update own user. |
|
|