fleet/website/api/controllers/view-transparency.js

28 lines
273 B
JavaScript
Raw Normal View History

module.exports = {
friendlyName: 'View transparency',
description: 'Display "Transparency" page.',
exits: {
success: {
viewTemplatePath: 'pages/transparency'
}
},
fn: async function () {
// Respond with view.
return {};
}
};