mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Changes: - Added /os-settings, a page where users can generate configuration profiles - Updated the docs navigation component to have a link to the os settings page - Added a new action: `get-llm-generated-configuration-profile` that generates a configuration profile in either .mobileconfig, DDM, or CSP formats. - Added a new website dependency: ace editor.
27 lines
270 B
JavaScript
Vendored
27 lines
270 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View os settings',
|
|
|
|
|
|
description: 'Display "Os settings" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/os-settings'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|