mirror of
https://github.com/fleetdm/fleet
synced 2026-05-04 05:48:26 +00:00
Changes: - Moved documentation pages into the docs/ folder - Updated routes, poicies, and importer.less - Renamed the "scripts" page to "script-library" to be consistent with the other landing pages for YAML documentation - removed a stray console.log() in the new-licence page script
51 lines
1.1 KiB
JavaScript
Vendored
51 lines
1.1 KiB
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View app library',
|
|
|
|
|
|
description: 'Display "App library" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/docs/app-library'
|
|
},
|
|
badConfig: { responseType: 'badConfig' },
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
if (!_.isObject(sails.config.builtStaticContent) || !_.isArray(sails.config.builtStaticContent.appLibrary) || !sails.config.builtStaticContent.appLibrary) {
|
|
throw {badConfig: 'builtStaticContent.appLibrary'};
|
|
}
|
|
|
|
let allApps = sails.config.builtStaticContent.appLibrary;
|
|
|
|
let macOsApps = _.filter(allApps, (app)=>{
|
|
return app.platform === 'darwin';
|
|
});
|
|
macOsApps = _.sortBy(macOsApps, (app)=>{
|
|
return app.name.toLowerCase();
|
|
});
|
|
|
|
let windowsApps = _.filter(allApps, (app)=>{
|
|
return app.platform === 'windows';
|
|
});
|
|
windowsApps = _.sortBy(windowsApps, (app)=>{
|
|
return app.name.toLowerCase();
|
|
});
|
|
// Respond with view.
|
|
return {
|
|
allApps,
|
|
windowsApps,
|
|
macOsApps,
|
|
algoliaPublicKey: sails.config.custom.algoliaPublicKey,
|
|
};
|
|
|
|
}
|
|
|
|
|
|
};
|