From 4cd33ea0297ff5e1790be7dc00122dbda455ebca Mon Sep 17 00:00:00 2001 From: Max Marze Date: Tue, 4 Jun 2024 15:50:21 -0400 Subject: [PATCH] feat: add org & app flag back (#12574) --- lib/cli/commands-options-schema.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/cli/commands-options-schema.js b/lib/cli/commands-options-schema.js index 9e6243ce6..eaf510ed0 100644 --- a/lib/cli/commands-options-schema.js +++ b/lib/cli/commands-options-schema.js @@ -41,4 +41,12 @@ export default { usage: 'AWS profile to use with the command', type: 'string', }, + org: { + usage: 'Dashboard org name', + type: 'string', + }, + app: { + usage: 'Dashboard app name', + type: 'string', + }, }