-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1032 from contentstack/feat/CS-41088
Extend "Export-to-CSV" support to include Taxonomies
- Loading branch information
Showing
3 changed files
with
345 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
module.exports = { | ||
limit:100, | ||
cancelString: 'Cancel and Exit', | ||
exportEntries: 'Export entries to a .CSV file', | ||
exportUsers: "Export organization users' data to a .CSV file", | ||
exportTaxonomies: 'Export taxonomies to a .CSV file', | ||
adminError: "Unable to export data. Make sure you're an admin or owner of this organization", | ||
organizationNameRegex: /\'/, | ||
CLI_EXPORT_CSV_LOGIN_FAILED: "You need to login to execute this command. See: auth:login --help", | ||
CLI_EXPORT_CSV_ENTRIES_ERROR: "You need to either login or provide a management token to execute this command" | ||
|
||
CLI_EXPORT_CSV_ENTRIES_ERROR: "You need to either login or provide a management token to execute this command", | ||
CLI_EXPORT_CSV_API_FAILED: 'Something went wrong. Please try again' | ||
}; |
Oops, something went wrong.