2025-01-08 19:47:17 +00:00
|
|
|
module.exports = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
friendlyName: 'View query generator',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
description: 'Display "Query generator" page.',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
exits: {
|
|
|
|
|
|
|
|
|
|
success: {
|
|
|
|
|
viewTemplatePath: 'pages/admin/query-generator'
|
2025-01-10 23:51:03 +00:00
|
|
|
},
|
|
|
|
|
badConfig: { responseType: 'badConfig' },
|
2025-01-08 19:47:17 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fn: async function () {
|
2025-01-10 23:51:03 +00:00
|
|
|
if (!_.isObject(sails.config.builtStaticContent) || !_.isArray(sails.config.builtStaticContent.schemaTables)) {
|
|
|
|
|
throw {badConfig: 'builtStaticContent.schemaTables'};
|
|
|
|
|
}
|
2025-01-08 19:47:17 +00:00
|
|
|
// Respond with view.
|
|
|
|
|
return {};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|