New export route working to query all blueprints and add to one data object; need to write to file

This commit is contained in:
efarooqui
2021-02-08 17:33:09 -08:00
parent 7bafcb0343
commit 13a4b11259
3 changed files with 28 additions and 11 deletions

View File

@@ -1,6 +1,7 @@
export default {
errors: {
update: 'The server could not update. Check your API credentials and internet connection and try again.',
export: 'The server could not export. Check that you provided a file path to export to and try again.',
onlySheet: 'You cannot query a sheet directly. The URL needs to be in the format /:sheet/:tab/:resource.',
onlyTab: 'You cannot query a tab directly. The URL needs to be in the format /:sheet/:tab/:resource.',
noSheet: sheet => `The sheet ${sheet} is not available in this server.`,
@@ -9,6 +10,7 @@ export default {
modelLayer: prts => `Something went wrong at the model layer`
},
success: {
update: 'All sheets updated'
update: 'All sheets updated',
export: dest => `All resources exported to the file: ${dest}`,
}
}