fleet/website/api/controllers/view-compliance.js
Mike Thomas 8b99dc9943
create new landing page called /compliance (#9787)
- 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]>
2023-02-14 08:06:02 +09:00

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