update encrypt command notes

This commit is contained in:
Ben Irvin 2022-11-04 10:18:09 +01:00
parent 4377a53106
commit 8ecf0f48bb

View File

@ -269,7 +269,7 @@ program
.command('export')
.description('Export data from Strapi to file')
.addOption(
new Option('--encrypt [boolean]', `Encrypt output file using 'aes-128-ecb'`) // TODO: we should get a default from @strapi/data-transfer and display it here
new Option('--encrypt [boolean]', `Encrypt output file using the 'aes-128-ecb' algorithm`)
.default(true)
.argParser(parseInputBool)
)