mirror of
https://github.com/fleetdm/fleet
synced 2026-05-04 13:59:01 +00:00
27 lines
273 B
JavaScript
Vendored
27 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 {};
|
|
|
|
}
|
|
|
|
|
|
};
|