mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
13 lines
298 B
Dart
13 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();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|