mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
Update get user info controller to avoid conflict with /count
This commit is contained in:
parent
c6ecfb679a
commit
cbdb8fa51f
7 changed files with 9 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue