-
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 #1141 from contentstack/feat/CS-40615-teams
Feat/CS-40615- Adding teams support to export-to-csv
- Loading branch information
Showing
9 changed files
with
967 additions
and
249 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,11 @@ | ||
module.exports = { | ||
cancelString: 'Cancel and Exit', | ||
exportEntries: 'Export entries to a .CSV file', | ||
exportUsers: "Export organization users' data to a .CSV file", | ||
exportUsers: "Export organization user's data to a .CSV file", | ||
exportTeams: "Export organization team's data 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.