Added rudimentary scene and entity scene remove.

This commit is contained in:
DebaucheryLibrarian
2020-10-19 02:02:21 +02:00
parent 2536405dba
commit 593ce27312
12 changed files with 350 additions and 115 deletions

View File

@@ -238,6 +238,21 @@ const { argv } = yargs
type: 'boolean',
default: false,
})
.option('flush-channels', {
describe: 'Delete all scenes and movies from channels.',
type: 'array',
alias: 'flush-channel',
})
.option('flush-networks', {
describe: 'Delete all scenes and movies from network.',
type: 'array',
alias: 'flush-network',
})
.option('delete', {
describe: 'Remove scenes by ID.',
type: 'array',
alias: 'remove',
})
.coerce('after', interpretAfter)
.coerce('actors-update', interpretAfter);