Added more documentation to explain how the system works (especially to api readers)

This commit is contained in:
Joseph Milazzo 2025-06-07 15:22:50 -05:00
parent 29c29976f1
commit da4ab9feeb
3 changed files with 5 additions and 4 deletions

View file

@ -156,6 +156,7 @@ public class ReadingProfileService(IUnitOfWork unitOfWork, ILocalizationService
UpdateReaderProfileFields(parentProfile, dto, false);
unitOfWork.AppUserReadingProfileRepository.Update(parentProfile);
// Remove the implicit profile when we UpdateParent (from reader) as it is implied that we are already bound with a non-implicit profile
await DeleteImplicateReadingProfilesForSeries(userId, [seriesId]);
await unitOfWork.CommitAsync();