fleet/website/api/controllers/imagine/view-unused-software.js
Mike McNeil f1c3aca5e3
/imagine/unused-software (#9893)
Stub for landing page.

@jarodreyes will take it from here (but i'll go ahead and merge)
2023-02-16 18:11:56 -06:00

27 lines
290 B
JavaScript
Vendored

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