1
0
mirror of https://github.com/immich-app/immich.git synced 2025-06-18 03:57:43 +02:00

Update get user info controller to avoid conflict with /count

This commit is contained in:
Alex Tran
2022-07-17 15:09:26 -05:00
parent c6ecfb679a
commit cbdb8fa51f
7 changed files with 9 additions and 7 deletions

View File

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