Browse Source

♻️ Update client services (#1223)

pull/13907/head
Alejandra 1 year ago
committed by GitHub
parent
commit
2f0a682bfe
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 13
      frontend/src/client/services.ts

13
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.

Loading…
Cancel
Save