mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 14:58:33 +00:00
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
29 lines
337 B
JavaScript
Vendored
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,
|
|
};
|
|
|
|
}
|
|
|
|
|
|
};
|