1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

hide experimental bw send --email flag (#15955)

This commit is contained in:
✨ Audrey ✨
2025-08-08 15:12:48 -04:00
committed by GitHub
parent 6ab67e9a8f
commit 01d95f325f

View File

@@ -55,10 +55,13 @@ export class SendProgram extends BaseProgram {
"optional password to access this Send. Can also be specified in JSON.",
).conflicts("email"),
)
.option(
"--email <email>",
"optional emails to access this Send. Can also be specified in JSON.",
parseEmail,
.addOption(
new Option(
"--email <email>",
"optional emails to access this Send. Can also be specified in JSON.",
)
.argParser(parseEmail)
.hideHelp(),
)
.option("-a, --maxAccessCount <amount>", "The amount of max possible accesses.")
.option("--hidden", "Hide <data> in web by default. Valid only if --file is not set.")