mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Created Rapid7 landing page in `/imagine` From Mike T: Sorry for the bombardment of commits. Here's a breakdown of those commits and changes: - I increased the max-width of the hero text area for M-size breakpoints and above to suit the content better. - During my review, I noticed that the local-preview-generated changes to `.sailsrc` had been pushed, but in my attempt to fix I deleted the file rather than the diff. - Attempted to revert back to my previous commit, but this was my first attempt at removing a commit, so I wasn’t sure if it was successful. - In the end, I re-pushed `.sailsrc` from `main`. - Crisis averted in a very roundabout way 🙏🏻 # Checklist for submitter - [x] Manual QA by Mike T --------- Co-authored-by: Mike Thomas <[email protected]> Co-authored-by: Mike Thomas <[email protected]> Co-authored-by: Eric <[email protected]>
27 lines
302 B
JavaScript
Vendored
27 lines
302 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View rapid 7 alternative',
|
|
|
|
|
|
description: 'Display "Rapid 7 alternative" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/imagine/rapid-7-alternative'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|