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.
28 lines
276 B
JavaScript
Vendored
28 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 {};
|
|
|
|
}
|
|
|
|
|
|
};
|