refactor(server): /user profile endpoint (#9669)

* refactor(server): user profile endpoint

* chore: open api
This commit is contained in:
Jason Rasmussen 2024-05-22 14:31:12 -04:00 committed by GitHub
parent ecd018a826
commit 8f37784eae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 60 additions and 60 deletions

View file

@ -298,13 +298,13 @@ class UserApi {
return null;
}
/// Performs an HTTP 'GET /users/profile-image/{id}' operation and returns the [Response].
/// Performs an HTTP 'GET /users/{id}/profile-image' operation and returns the [Response].
/// Parameters:
///
/// * [String] id (required):
Future<Response> getProfileImageWithHttpInfo(String id,) async {
// ignore: prefer_const_declarations
final path = r'/users/profile-image/{id}'
final path = r'/users/{id}/profile-image'
.replaceAll('{id}', id);
// ignore: prefer_final_locals