mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 20:48:35 +00:00
Closes: #19531 Changes: - Added a deal registration page at /deals - Added a new email template: `email-deal-registration` - Added a new action to send the deal registration form submission to the email address set in the `sails.config.custom. dealRegistrationContactEmailAddress` config variable - Updated the HTML email preview page to support the new email template.
27 lines
252 B
JavaScript
Vendored
27 lines
252 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View deals',
|
|
|
|
|
|
description: 'Display "Deals" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/deals'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|