2023-04-27 15:10:41 +00:00
|
|
|
import PATHS from "router/paths";
|
|
|
|
|
|
|
|
|
|
import { ISideNavItem } from "pages/admin/components/SideNav/SideNav";
|
|
|
|
|
|
2023-06-02 13:14:39 +00:00
|
|
|
import EndUserAuthentication from "./cards/EndUserAuthentication/EndUserAuthentication";
|
2023-04-27 15:10:41 +00:00
|
|
|
import BootstrapPackage from "./cards/BootstrapPackage";
|
|
|
|
|
|
|
|
|
|
interface IMacOSSetupCardProps {
|
|
|
|
|
currentTeamId?: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: types
|
|
|
|
|
const MAC_OS_SETUP_NAV_ITEMS: ISideNavItem<IMacOSSetupCardProps | any>[] = [
|
2023-06-02 13:14:39 +00:00
|
|
|
{
|
|
|
|
|
title: "End user authentication",
|
|
|
|
|
urlSection: "end-user-auth",
|
|
|
|
|
path: PATHS.CONTROLS_END_USER_AUTHENTICATION,
|
|
|
|
|
Card: EndUserAuthentication,
|
|
|
|
|
},
|
2023-04-27 15:10:41 +00:00
|
|
|
{
|
|
|
|
|
title: "Bootstrap package",
|
|
|
|
|
urlSection: "bootstrap-package",
|
|
|
|
|
path: PATHS.CONTROLS_BOOTSTRAP_PACKAGE,
|
|
|
|
|
Card: BootstrapPackage,
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export default MAC_OS_SETUP_NAV_ITEMS;
|