mirror of
https://github.com/fleetdm/fleet
synced 2026-05-17 22:18:39 +00:00
Closes https://github.com/fleetdm/fleet/issues/15615 _I'm sorry, I should have split this into separate PRs. I was trying to move fast, but I didn't consider how awkward to review this PR would become._ - Updated page titles and descriptions for: - Homepage (no change to description. Currently set to the default blurb from "Why Fleet doc." - `/pricing` - `/integrations` - `/vulnerability-management` - `/endpoint-ops` - `/device-management` (I'm not super happy with this one. I tried to summarize everything, but I think it's too long. I probably need to rewrite it in a fast follow PR) - Renamed `/osquery-management` to `/endpoint-ops` and set up redirect - Removed `/compliance` (Note: I did not remove the compliance feature images as they are referenced in various /imagine land pages. I need to confirm whether those imagine pages are used in active ads?) --------- Co-authored-by: Eric <[email protected]>
27 lines
273 B
JavaScript
Vendored
27 lines
273 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View endpoint ops',
|
|
|
|
|
|
description: 'Display "Endpoint ops" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/endpoint-ops'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|