28 lines
334 B
JavaScript
28 lines
334 B
JavaScript
|
module.exports = {
|
||
|
|
||
|
|
||
|
friendlyName: 'View welcome page',
|
||
|
|
||
|
|
||
|
description: 'Display the dashboard "Welcome" page.',
|
||
|
|
||
|
|
||
|
exits: {
|
||
|
|
||
|
success: {
|
||
|
viewTemplatePath: 'pages/dashboard/welcome',
|
||
|
description: 'Display the welcome page for authenticated users.'
|
||
|
},
|
||
|
|
||
|
},
|
||
|
|
||
|
|
||
|
fn: async function () {
|
||
|
|
||
|
return {};
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
};
|