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