Added showcase flag to batch table.

This commit is contained in:
DebaucheryLibrarian
2023-07-25 03:22:24 +02:00
parent 1082effc17
commit b7a31b7933
3 changed files with 22 additions and 3 deletions

View File

@@ -366,6 +366,12 @@ const { argv } = yargs
alias: ['timeout'],
default: 60000,
})
.option('showcased', {
describe: 'Whether the batch should be showcased as new.',
type: 'boolean',
alias: ['showcase', 'batch-showcased'],
default: true,
})
.coerce('after', interpretAfter)
.coerce('actors-update', (after) => interpretAfter(after, true));