mirror of
https://github.com/fleetdm/fleet
synced 2026-04-29 09:27:18 +00:00
relates to #9593 Implements the UI for users to upload, download, and delete macos profiles  - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. - [ ] Added/updated tests - [x] Manual QA for all new/changed functionality
15 lines
405 B
TypeScript
15 lines
405 B
TypeScript
import PATHS from "router/paths";
|
|
|
|
import { ISideNavItem } from "pages/admin/components/SideNav/SideNav";
|
|
import CustomSettings from "./cards/CustomSettings";
|
|
|
|
const MAC_OS_SETTINGS_NAV_ITEMS: ISideNavItem<any>[] = [
|
|
{
|
|
title: "Custom settings",
|
|
urlSection: "custom-settings",
|
|
path: PATHS.CONTROLS_CUSTOM_SETTINGS,
|
|
Card: CustomSettings,
|
|
},
|
|
];
|
|
|
|
export default MAC_OS_SETTINGS_NAV_ITEMS;
|