mirror of
https://github.com/fleetdm/fleet
synced 2026-04-25 07:27:33 +00:00
relates to #11002 Implements the UI for mdm macos setup end user authentication page.   - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. - [x] Manual QA for all new/changed functionality
28 lines
764 B
TypeScript
28 lines
764 B
TypeScript
import PATHS from "router/paths";
|
|
|
|
import { ISideNavItem } from "pages/admin/components/SideNav/SideNav";
|
|
|
|
import EndUserAuthentication from "./cards/EndUserAuthentication/EndUserAuthentication";
|
|
import BootstrapPackage from "./cards/BootstrapPackage";
|
|
|
|
interface IMacOSSetupCardProps {
|
|
currentTeamId?: number;
|
|
}
|
|
|
|
// TODO: types
|
|
const MAC_OS_SETUP_NAV_ITEMS: ISideNavItem<IMacOSSetupCardProps | any>[] = [
|
|
{
|
|
title: "End user authentication",
|
|
urlSection: "end-user-auth",
|
|
path: PATHS.CONTROLS_END_USER_AUTHENTICATION,
|
|
Card: EndUserAuthentication,
|
|
},
|
|
{
|
|
title: "Bootstrap package",
|
|
urlSection: "bootstrap-package",
|
|
path: PATHS.CONTROLS_BOOTSTRAP_PACKAGE,
|
|
Card: BootstrapPackage,
|
|
},
|
|
];
|
|
|
|
export default MAC_OS_SETUP_NAV_ITEMS;
|