mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
28 lines
270 B
JavaScript
28 lines
270 B
JavaScript
|
module.exports = {
|
||
|
|
||
|
|
||
|
friendlyName: 'View get started',
|
||
|
|
||
|
|
||
|
description: 'Display "Get started" page.',
|
||
|
|
||
|
|
||
|
exits: {
|
||
|
|
||
|
success: {
|
||
|
viewTemplatePath: 'pages/get-started'
|
||
|
}
|
||
|
|
||
|
},
|
||
|
|
||
|
|
||
|
fn: async function () {
|
||
|
|
||
|
// Respond with view.
|
||
|
return {};
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
};
|