mirror of
https://github.com/fleetdm/fleet
synced 2026-05-05 06:18:25 +00:00
- created a new page on fleetdm.com called /compliance - updated the main nav to include this page under 'Platform' --------- Co-authored-by: Eric <[email protected]>
27 lines
267 B
JavaScript
Vendored
27 lines
267 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View compliance',
|
|
|
|
|
|
description: 'Display "Compliance" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/compliance'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|