Skip to content

Commit

Permalink
Fixed missing mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLazarescu committed Feb 6, 2024
1 parent 6b2f50a commit ab3e964
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Application/Services/FolderService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ private Folder FolderInDtoToFolder(FolderInDto folderInDto)
Icon = folderInDto.Icon,
Description = folderInDto.Description,
LastModified = folderInDto.LastModified,
IndexInParent = folderInDto.IndexInParent,
Children = new List<Folder>()
};

Expand Down Expand Up @@ -88,6 +89,7 @@ private async Task<FolderOutDto> FolderToFolderOutDto(Folder folder)
Color = folder.Color,
Icon = folder.Icon,
LastModified = folder.LastModified,
IndexInParent = folder.IndexInParent,
Description = folder.Description
};

Expand Down

0 comments on commit ab3e964

Please sign in to comment.