mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-07-03 10:54:38 -05:00
Make Sure Backup Create Flags are Exposed (#1650)
This commit is contained in:
@@ -55,6 +55,10 @@ class BackupMutation {
|
|||||||
val clientMutationId: String? = null,
|
val clientMutationId: String? = null,
|
||||||
val includeChapters: Boolean? = null,
|
val includeChapters: Boolean? = null,
|
||||||
val includeCategories: Boolean? = null,
|
val includeCategories: Boolean? = null,
|
||||||
|
val includeTracking: Boolean? = null,
|
||||||
|
val includeHistory: Boolean? = null,
|
||||||
|
val includeClientData: Boolean? = null,
|
||||||
|
val includeServerSettings: Boolean? = null,
|
||||||
)
|
)
|
||||||
|
|
||||||
data class CreateBackupPayload(
|
data class CreateBackupPayload(
|
||||||
@@ -75,10 +79,10 @@ class BackupMutation {
|
|||||||
includeManga = true,
|
includeManga = true,
|
||||||
includeCategories = input?.includeCategories ?: true,
|
includeCategories = input?.includeCategories ?: true,
|
||||||
includeChapters = input?.includeChapters ?: true,
|
includeChapters = input?.includeChapters ?: true,
|
||||||
includeTracking = true,
|
includeTracking = input?.includeTracking ?: true,
|
||||||
includeHistory = true,
|
includeHistory = input?.includeHistory ?: true,
|
||||||
includeClientData = true,
|
includeClientData = input?.includeClientData ?: true,
|
||||||
includeServerSettings = true,
|
includeServerSettings = input?.includeServerSettings ?: true,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user