mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
09aad8ff07
Add action, template stub, and stylesheet for "Pricing" page
28 lines
258 B
JavaScript
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 {};
|
|
|
|
}
|
|
|
|
|
|
};
|