Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added survey link when user executes import/export command #920

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/commands/export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,16 @@ export default async function exportCMD(params: ExportParams) {
const context = await setupContext(nconf.get(), 'export');
await context.dump();
log.info('Export Successful');

log.info(`
================================================
======= Help us improve Auth0 Deploy CLI =======
================================================
We're on a mission to make Auth0 Deploy CLI the best it can be, and we need YOUR help.
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.

===> https://www.surveymonkey.com/r/LZKMPFN <===

Thank you for helping us make Auth0 Deploy CLI better for everyone!
================================================`);
}
12 changes: 12 additions & 0 deletions src/commands/import.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,16 @@ export default async function importCMD(params: ImportParams) {
await toolsDeploy(context.assets, context.mgmtClient, config);

log.info('Import Successful');

log.info(`
================================================
======= Help us improve Auth0 Deploy CLI =======
================================================
We're on a mission to make Auth0 Deploy CLI the best it can be, and we need YOUR help.
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.

===> https://www.surveymonkey.com/r/LZKMPFN <===

Thank you for helping us make Auth0 Deploy CLI better for everyone!
================================================`);
}
Loading