fleet/website/api/controllers/view-integrations.js
Eric 04a3f18a60
Website: Add integrations page (#14128)
Changes:
- Added a new page: /integrations
- Added the page to `config/policies.js`, `config/routes.js`, and
`assets/styles/importer.less`
- Added a link to the page to the "Platform" navigation dropdown.


This PR will be ready for review when:
- [ ] The meta description (in routes.js) is approved
- [ ] The text that replaces the lorum ipsum in the wireframes has been
approved.
2023-10-05 08:52:19 +09:00

27 lines
273 B
JavaScript
Vendored

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