-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
216 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/kotlin/fr/shikkanime/controllers/site/SiteController.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
src/main/kotlin/fr/shikkanime/dtos/animes/AnimeAudioLocalesSeasonsDto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package fr.shikkanime.dtos.animes | ||
|
||
import java.time.ZonedDateTime | ||
import java.util.UUID | ||
|
||
data class AnimeAudioLocalesSeasonsDto( | ||
val animeUuid: UUID, | ||
val audioLocale: String, | ||
val season: Int, | ||
val lastReleaseDateTime: ZonedDateTime, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...tlin/fr/shikkanime/dtos/MissedAnimeDto.kt → .../shikkanime/dtos/animes/MissedAnimeDto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package fr.shikkanime.dtos | ||
package fr.shikkanime.dtos.animes | ||
|
||
data class MissedAnimeDto( | ||
val anime: AnimeDto, | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/kotlin/fr/shikkanime/dtos/mappings/EpisodeMappingDto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/fr/shikkanime/dtos/mappings/EpisodeMappingSeoDto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package fr.shikkanime.dtos.mappings | ||
|
||
import fr.shikkanime.entities.enums.EpisodeType | ||
import java.time.ZonedDateTime | ||
|
||
data class EpisodeMappingSeoDto( | ||
val animeSlug: String, | ||
val season: Int, | ||
val episodeType: EpisodeType, | ||
val number: Int, | ||
val lastReleaseDateTime: ZonedDateTime | ||
) |
6 changes: 3 additions & 3 deletions
6
...kanime/dtos/UpdateAllEpisodeMappingDto.kt → ...os/mappings/UpdateAllEpisodeMappingDto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
package fr.shikkanime.dtos | ||
package fr.shikkanime.dtos.mappings | ||
|
||
import fr.shikkanime.entities.enums.EpisodeType | ||
import java.util.* | ||
import java.util.UUID | ||
|
||
data class UpdateAllEpisodeMappingDto( | ||
val uuids: List<UUID>, | ||
val episodeType: EpisodeType?, | ||
val season: Int?, | ||
val forceUpdate: Boolean? | ||
) | ||
) |
4 changes: 2 additions & 2 deletions
4
src/main/kotlin/fr/shikkanime/dtos/member/RefreshMemberDto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/main/kotlin/fr/shikkanime/dtos/variants/EpisodeVariantIdentifierDto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package fr.shikkanime.dtos.variants | ||
|
||
import fr.shikkanime.entities.enums.CountryCode | ||
import fr.shikkanime.entities.enums.EpisodeType | ||
import fr.shikkanime.entities.enums.Platform | ||
import java.util.UUID | ||
|
||
data class EpisodeVariantIdentifierDto( | ||
val countryCode: CountryCode, | ||
val animeUuid: UUID, | ||
val platform: Platform, | ||
val season: Int, | ||
val episodeType: EpisodeType, | ||
val number: Int, | ||
val audioLocale: String, | ||
val identifier: String, | ||
) |
14 changes: 14 additions & 0 deletions
14
src/main/kotlin/fr/shikkanime/dtos/variants/VariantReleaseDto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package fr.shikkanime.dtos.variants | ||
|
||
import fr.shikkanime.entities.Anime | ||
import fr.shikkanime.entities.EpisodeMapping | ||
import fr.shikkanime.entities.enums.Platform | ||
import java.time.ZonedDateTime | ||
|
||
data class VariantReleaseDto( | ||
val anime: Anime, | ||
val episodeMapping: EpisodeMapping, | ||
val releaseDateTime: ZonedDateTime, | ||
val platform: Platform, | ||
val audioLocale: String, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.