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
No known key found for this signature in database
GPG key ID: E4954BC787B85C8A
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