mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
87ab319b30
* Implement transparency page for fleetdm.com
28 lines
273 B
JavaScript
Vendored
28 lines
273 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View transparency',
|
|
|
|
|
|
description: 'Display "Transparency" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/transparency'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|