Added actor flush, renamed inconsistent actor flush to actor delete.

This commit is contained in:
DebaucheryLibrarian
2021-02-05 04:23:13 +01:00
parent dbfbd1f04d
commit 80b8fe3654
3 changed files with 36 additions and 3 deletions

View File

@@ -269,7 +269,7 @@ const { argv } = yargs
alias: 'flush-network',
})
.option('flush-actors', {
describe: 'Delete actors with profiles and scenes.',
describe: 'Flush all actors and their scenes.',
type: 'array',
alias: 'flush-actor',
})
@@ -291,6 +291,11 @@ const { argv } = yargs
describe: 'Remove all movies.',
type: 'boolean',
})
.option('delete-actors', {
describe: 'Remove actors by ID.',
type: 'array',
alias: ['delete-actor', 'remove-actors', 'remove-actor'],
})
.option('delete-scenes', {
describe: 'Remove scenes by ID.',
type: 'array',