mirror of
https://github.com/fleetdm/fleet
synced 2026-05-04 13:59:01 +00:00
- 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!
27 lines
270 B
JavaScript
Vendored
27 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 {};
|
|
|
|
}
|
|
|
|
|
|
};
|