Skip to content

Commit 846c02c

Browse files
authored
Added survey link when user executes import/export command (#920)
* Added survey link when user executes import/export command * Updated the survey link * Updated linting
1 parent 8c8e9ea commit 846c02c

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

src/commands/export.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,16 @@ export default async function exportCMD(params: ExportParams) {
6060
const context = await setupContext(nconf.get(), 'export');
6161
await context.dump();
6262
log.info('Export Successful');
63+
64+
log.info(`
65+
================================================
66+
======= Help us improve Auth0 Deploy CLI =======
67+
================================================
68+
We're on a mission to make Auth0 Deploy CLI the best it can be, and we need YOUR help.
69+
We've put together a brief survey to understand how you use Deploy CLI, what you love about it, and where you think we can do better.
70+
71+
===> https://www.surveymonkey.com/r/LZKMPFN <===
72+
73+
Thank you for helping us make Auth0 Deploy CLI better for everyone!
74+
================================================`);
6375
}

src/commands/import.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,16 @@ export default async function importCMD(params: ImportParams) {
5252
await toolsDeploy(context.assets, context.mgmtClient, config);
5353

5454
log.info('Import Successful');
55+
56+
log.info(`
57+
================================================
58+
======= Help us improve Auth0 Deploy CLI =======
59+
================================================
60+
We're on a mission to make Auth0 Deploy CLI the best it can be, and we need YOUR help.
61+
We've put together a brief survey to understand how you use Deploy CLI, what you love about it, and where you think we can do better.
62+
63+
===> https://www.surveymonkey.com/r/LZKMPFN <===
64+
65+
Thank you for helping us make Auth0 Deploy CLI better for everyone!
66+
================================================`);
5567
}

0 commit comments

Comments
 (0)