-
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 branch 'development' into fix/CS-42005
- Loading branch information
Showing
13 changed files
with
1,264 additions
and
430 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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.