mirror of
https://github.com/fleetdm/fleet
synced 2026-05-05 06:18:25 +00:00
Changes: - Added new page `/vulnerability-management`. - Updated `routes.js` and `importer.less` for the new page. - Added nav item "Vulnerability management" under "Platform." Closes https://github.com/fleetdm/fleet/issues/11577 --------- Co-authored-by: Eric <[email protected]>
27 lines
309 B
JavaScript
Vendored
27 lines
309 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View vulnerability-management',
|
|
|
|
|
|
description: 'Display "Vulnerability management" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/vulnerability-management'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|