mirror of
https://github.com/fleetdm/fleet
synced 2026-05-18 14:38:53 +00:00
Related to: https://github.com/fleetdm/fleet/issues/10210 Changes: - Added `/experimental/okta-webflow` - This page has a login form that accepts any input. When the login form is submitted, the page shows the user a EULA. - Updated policies, importer.less and routes - Updated `layouts/layout-sandbox` to hide the website's header and footer, and disable the Papercups chat widget when a variable named `optimizeForAppleWebview` is set to `true`. --------- Co-authored-by: Mike McNeil <[email protected]>
27 lines
286 B
JavaScript
Vendored
27 lines
286 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View okta webflow',
|
|
|
|
|
|
description: 'Display "Okta webflow" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/experimental/okta-webflow'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|