fleet/website/api/controllers/view-pricing.js
noahtalerman 09aad8ff07
On fleetdm.com, add stubbed "Pricing" page (#571)
Add action, template stub, and stylesheet for "Pricing" page
2021-03-31 17:24:42 -07:00

28 lines
258 B
JavaScript

module.exports = {
friendlyName: 'View pricing',
description: 'Display "Pricing" page.',
exits: {
success: {
viewTemplatePath: 'pages/pricing'
}
},
fn: async function () {
// Respond with view.
return {};
}
};