mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 16:41:59 +00:00
12 lines
298 B
Dart
12 lines
298 B
Dart
import 'package:openapi/api.dart';
|
|
|
|
dynamic upgradeDto(dynamic value, String targetType) {
|
|
switch (targetType) {
|
|
case 'UserPreferencesResponseDto':
|
|
if (value is Map) {
|
|
if (value['rating'] == null) {
|
|
value['rating'] = RatingResponse().toJson();
|
|
}
|
|
}
|
|
}
|
|
}
|