mirror of
https://github.com/fleetdm/fleet
synced 2026-05-20 23:48:52 +00:00
32 lines
507 B
JavaScript
32 lines
507 B
JavaScript
|
|
module.exports = {
|
||
|
|
|
||
|
|
|
||
|
|
friendlyName: 'View basic handbook',
|
||
|
|
|
||
|
|
|
||
|
|
description: 'Display "Basic handbook" page.',
|
||
|
|
|
||
|
|
|
||
|
|
exits: {
|
||
|
|
|
||
|
|
success: {
|
||
|
|
viewTemplatePath: 'pages/handbook/basic-handbook'
|
||
|
|
}
|
||
|
|
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
fn: async function () {
|
||
|
|
|
||
|
|
// Serve appropriate handbook page content.
|
||
|
|
// > Inspired by https://github.com/sailshq/sailsjs.com/blob/b53c6e6a90c9afdf89e5cae00b9c9dd3f391b0e7/api/controllers/documentation/view-documentation.js
|
||
|
|
// TODO
|
||
|
|
|
||
|
|
// Respond with view.
|
||
|
|
return {};
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
};
|