mirror of
https://github.com/immich-app/immich.git
synced 2025-12-17 17:23:20 +03:00
chore: update api (#2428)
This commit is contained in:
4
mobile/openapi/lib/model/add_users_dto.dart
generated
4
mobile/openapi/lib/model/add_users_dto.dart
generated
@@ -55,8 +55,8 @@ class AddUsersDto {
|
||||
}());
|
||||
|
||||
return AddUsersDto(
|
||||
sharedUserIds: json[r'sharedUserIds'] is List
|
||||
? (json[r'sharedUserIds'] as List).cast<String>()
|
||||
sharedUserIds: json[r'sharedUserIds'] is Iterable
|
||||
? (json[r'sharedUserIds'] as Iterable).cast<String>().toList(growable: false)
|
||||
: const [],
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user