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 <mthomas@fleetdm.com> Co-authored-by: Mike Thomas <78363703+mike-j-thomas@users.noreply.github.com>
28 lines
258 B
JavaScript
Vendored
28 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 {};
|
|
|
|
}
|
|
|
|
|
|
};
|