1
0
mirror of https://github.com/immich-app/immich.git synced 2025-07-16 07:24:40 +02:00

refactor(server): user info endpoint (#9668)

* refactor(server): user info endpoint

* chore: open api
This commit is contained in:
Jason Rasmussen
2024-05-22 14:15:33 -04:00
committed by GitHub
parent 202745f14b
commit ecd018a826
6 changed files with 64 additions and 66 deletions

View File

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