Support for private tracking with AniList and Bangumi (#1736)

Co-authored-by: MajorTanya <39014446+MajorTanya@users.noreply.github.com>
Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com>
This commit is contained in:
NarwhalHorns
2025-02-25 11:01:13 +00:00
committed by GitHub
parent badc229a23
commit 49b2b346b6
27 changed files with 214 additions and 25 deletions

View File

@@ -17,6 +17,7 @@ object TrackMapper {
remoteUrl: String,
startDate: Long,
finishDate: Long,
private: Boolean,
): Track = Track(
id = id,
mangaId = mangaId,
@@ -31,5 +32,6 @@ object TrackMapper {
remoteUrl = remoteUrl,
startDate = startDate,
finishDate = finishDate,
private = private,
)
}

View File

@@ -64,6 +64,7 @@ class TrackRepositoryImpl(
remoteUrl = mangaTrack.remoteUrl,
startDate = mangaTrack.startDate,
finishDate = mangaTrack.finishDate,
private = mangaTrack.private,
)
}
}