mirror of
https://github.com/fleetdm/fleet
synced 2026-04-29 09:27:18 +00:00
Related to: https://github.com/fleetdm/fleet/issues/26521 Changes: - Added two pages that will be used for the Microsoft compliance proxy (`/microsoft-compliance-partner/turn-on-mdm` & `/microsoft-compliance-partner/remediate`)
27 lines
280 B
JavaScript
Vendored
27 lines
280 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View remediate',
|
|
|
|
|
|
description: 'Display "Remediate" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/microsoft-proxy/remediate'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|