fleet/website/api/controllers/view-osquery-management.js
Mike Thomas 732780a259
created-osquery-management-landpage (#10207)
In this PR, I have:
- created an osquery management landing page for our upcoming ad
campaign.
 
~The WIP content is where we ended up after our review session.~

~For reference, the original content can be found on Figma:

https://www.figma.com/file/Jzo81K6E4jC0mcjD4JsWM8/%F0%9F%9A%A7-fleetdm.com-(scratchpad)?node-id=389%3A0~

---------

Co-authored-by: Eric <[email protected]>
2023-03-01 16:09:07 -08:00

27 lines
291 B
JavaScript
Vendored

module.exports = {
friendlyName: 'View osquery management',
description: 'Display "Osquery management" page.',
exits: {
success: {
viewTemplatePath: 'pages/osquery-management'
}
},
fn: async function () {
// Respond with view.
return {};
}
};