mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-01 02:17:43 +09:00 
			
		
		
		
	refactor(server): user endpoints (#9730)
* refactor(server): user endpoints * fix repos * fix unit tests --------- Co-authored-by: Daniel Dietzler <mail@ddietzler.dev> Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
		
							
								
								
									
										8
									
								
								mobile/openapi/lib/api/authentication_api.dart
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										8
									
								
								mobile/openapi/lib/api/authentication_api.dart
									
									
									
										generated
									
									
									
								
							| @@ -48,7 +48,7 @@ class AuthenticationApi { | ||||
|   /// Parameters: | ||||
|   /// | ||||
|   /// * [ChangePasswordDto] changePasswordDto (required): | ||||
|   Future<UserResponseDto?> changePassword(ChangePasswordDto changePasswordDto,) async { | ||||
|   Future<UserAdminResponseDto?> changePassword(ChangePasswordDto changePasswordDto,) async { | ||||
|     final response = await changePasswordWithHttpInfo(changePasswordDto,); | ||||
|     if (response.statusCode >= HttpStatus.badRequest) { | ||||
|       throw ApiException(response.statusCode, await _decodeBodyBytes(response)); | ||||
| @@ -57,7 +57,7 @@ class AuthenticationApi { | ||||
|     // At the time of writing this, `dart:convert` will throw an "Unexpected end of input" | ||||
|     // FormatException when trying to decode an empty string. | ||||
|     if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) { | ||||
|       return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'UserResponseDto',) as UserResponseDto; | ||||
|       return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'UserAdminResponseDto',) as UserAdminResponseDto; | ||||
|      | ||||
|     } | ||||
|     return null; | ||||
| @@ -183,7 +183,7 @@ class AuthenticationApi { | ||||
|   /// Parameters: | ||||
|   /// | ||||
|   /// * [SignUpDto] signUpDto (required): | ||||
|   Future<UserResponseDto?> signUpAdmin(SignUpDto signUpDto,) async { | ||||
|   Future<UserAdminResponseDto?> signUpAdmin(SignUpDto signUpDto,) async { | ||||
|     final response = await signUpAdminWithHttpInfo(signUpDto,); | ||||
|     if (response.statusCode >= HttpStatus.badRequest) { | ||||
|       throw ApiException(response.statusCode, await _decodeBodyBytes(response)); | ||||
| @@ -192,7 +192,7 @@ class AuthenticationApi { | ||||
|     // At the time of writing this, `dart:convert` will throw an "Unexpected end of input" | ||||
|     // FormatException when trying to decode an empty string. | ||||
|     if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) { | ||||
|       return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'UserResponseDto',) as UserResponseDto; | ||||
|       return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'UserAdminResponseDto',) as UserAdminResponseDto; | ||||
|      | ||||
|     } | ||||
|     return null; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user