mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Changes: - Added /admin/reset-trial, a page where website admins can reset local Fleet Premium trials. - Added a link to the reset trial page to the navigation on admin pages.
27 lines
276 B
JavaScript
Vendored
27 lines
276 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View reset trial',
|
|
|
|
|
|
description: 'Display "Reset trial" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/admin/reset-trial'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|