fleet/website/api/controllers/view-configuration-builder.js
Eric 72b5bfc634
Website: add configuration profile generator UI. (#29702)
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).
2025-06-03 14:22:40 -05:00

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 {};
}
};