fleet/website/api/controllers/view-os-settings.js
Eric 5251309302
Website: Update OS settings page (#26398)
Changes:
- Updated the content of the /os-settings page to match the latest
wireframes and commented out the profile generator experiment on that
page.
- Added the os-settings page to the "Docs" navigation menu and
navigation component
2025-02-18 07:40:27 +09:00

29 lines
337 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 {
algoliaPublicKey: sails.config.custom.algoliaPublicKey,
};
}
};