mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
Closes: https://github.com/fleetdm/confidential/issues/11222 Changes: - Added a new page for Fleet Fast-track (/fast-track)
27 lines
267 B
JavaScript
Vendored
27 lines
267 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View fast track',
|
|
|
|
|
|
description: 'Display "Fast track" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/fast-track'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|