mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
Closes: #12183 Changes: - Added a /support page. - Updated routes, policies, and importer - Updated the header navigation to have a link to the support page. - Updated docs pages to link to the support page. --------- Co-authored-by: Mike Thomas <[email protected]> Co-authored-by: Mike Thomas <[email protected]>
27 lines
258 B
JavaScript
Vendored
27 lines
258 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View support',
|
|
|
|
|
|
description: 'Display "Support" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/support'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|