mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
85b31a3523
- Add action, template stub, and stylesheet for "Get started" page - Add new styles for site header - Update feature comparison to indicate agent autoupdates are now available!
28 lines
270 B
JavaScript
Vendored
28 lines
270 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View get started',
|
|
|
|
|
|
description: 'Display "Get started" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/get-started'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|