fleet/website/api/controllers/view-get-started.js
noahtalerman 85b31a3523
On fleetdm.com, add stubbed "Get started" page (#570)
- 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!
2021-03-31 16:08:36 -07:00

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 {};
}
};