1
0
mirror of https://github.com/immich-app/immich.git synced 2025-08-10 23:22:22 +02:00

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