fleet/website/api/controllers/view-get-started.js

28 lines
270 B
JavaScript
Raw Normal View History

module.exports = {
friendlyName: 'View get started',
description: 'Display "Get started" page.',
exits: {
success: {
viewTemplatePath: 'pages/get-started'
}
},
fn: async function () {
// Respond with view.
return {};
}
};