mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 07:58:31 +00:00
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 {};
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
};
|