File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export class ImageToFoodRepository {
2525 storageType : food . storageType ,
2626 class1 : food . class1 ,
2727 class2 : food . class2 ,
28+ icon : food . icon ,
2829 addedDate : currentDate . toISOString ( ) ,
2930 expireDate : expireDate . toISOString ( ) ,
3031 } ) ;
@@ -39,6 +40,7 @@ export class ImageToFoodRepository {
3940 storageType : 'fridge' ,
4041 class1 : '기타' ,
4142 class2 : '기타' ,
43+ icon : 'null' ,
4244 addedDate : new Date ( ) . toISOString ( ) ,
4345 } ;
4446 }
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export class CreateFoodDto {
3333 @ApiProperty ( { description : '중분류' } )
3434 @IsString ( )
3535 @IsOptional ( )
36- class2 ? : string ;
36+ class2 : string ;
3737
3838 @ApiProperty ( { description : '표시 아이콘 URL' } )
3939 @IsString ( )
You can’t perform that action at this time.
0 commit comments