mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
28 lines
309 B
JavaScript
28 lines
309 B
JavaScript
|
|
module.exports = {
|
||
|
|
|
||
|
|
|
||
|
|
friendlyName: 'View vulnerability-management',
|
||
|
|
|
||
|
|
|
||
|
|
description: 'Display "Vulnerability management" page.',
|
||
|
|
|
||
|
|
|
||
|
|
exits: {
|
||
|
|
|
||
|
|
success: {
|
||
|
|
viewTemplatePath: 'pages/vulnerability-management'
|
||
|
|
}
|
||
|
|
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
fn: async function () {
|
||
|
|
|
||
|
|
// Respond with view.
|
||
|
|
return {};
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
};
|