mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
Related to: #28489 Changes: - Added the first version of the configuration profile builder to the Fleet website. (currently supports four Windows and four macOS password-related options).
27 lines
300 B
JavaScript
Vendored
27 lines
300 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View configuration builder',
|
|
|
|
|
|
description: 'Display "Configuration builder" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/configuration-builder'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|