mirror of
https://github.com/fleetdm/fleet
synced 2026-05-05 06:18:25 +00:00
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]>
27 lines
291 B
JavaScript
Vendored
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 {};
|
|
|
|
}
|
|
|
|
|
|
};
|