@@ -6,34 +6,32 @@ import Mdm from "./cards/MdmSettings/MdmSettings";
6
6
import AutomaticEnrollment from "./cards/AutomaticEnrollment/AutomaticEnrollment" ;
7
7
import Calendars from "./cards/Calendars/Calendars" ;
8
8
9
- const getFilteredIntegrationSettingsNavItems = ( ) : ISideNavItem < any > [ ] => {
10
- return [
11
- // TODO: types
12
- {
13
- title : "Ticket destinations" ,
14
- urlSection : "ticket-destinations" ,
15
- path : PATHS . ADMIN_INTEGRATIONS_TICKET_DESTINATIONS ,
16
- Card : Integrations ,
17
- } ,
18
- {
19
- title : "Mobile device management (MDM)" ,
20
- urlSection : "mdm" ,
21
- path : PATHS . ADMIN_INTEGRATIONS_MDM ,
22
- Card : Mdm ,
23
- } ,
24
- {
25
- title : "Automatic enrollment" ,
26
- urlSection : "automatic-enrollment" ,
27
- path : PATHS . ADMIN_INTEGRATIONS_AUTOMATIC_ENROLLMENT ,
28
- Card : AutomaticEnrollment ,
29
- } ,
30
- {
31
- title : "Calendars" ,
32
- urlSection : "calendars" ,
33
- path : PATHS . ADMIN_INTEGRATIONS_CALENDARS ,
34
- Card : Calendars ,
35
- } ,
36
- ] ;
37
- } ;
9
+ const integrationSettingsNavItems : ISideNavItem < any > [ ] = [
10
+ // TODO: types
11
+ {
12
+ title : "Ticket destinations" ,
13
+ urlSection : "ticket-destinations" ,
14
+ path : PATHS . ADMIN_INTEGRATIONS_TICKET_DESTINATIONS ,
15
+ Card : Integrations ,
16
+ } ,
17
+ {
18
+ title : "Mobile device management (MDM)" ,
19
+ urlSection : "mdm" ,
20
+ path : PATHS . ADMIN_INTEGRATIONS_MDM ,
21
+ Card : Mdm ,
22
+ } ,
23
+ {
24
+ title : "Automatic enrollment" ,
25
+ urlSection : "automatic-enrollment" ,
26
+ path : PATHS . ADMIN_INTEGRATIONS_AUTOMATIC_ENROLLMENT ,
27
+ Card : AutomaticEnrollment ,
28
+ } ,
29
+ {
30
+ title : "Calendars" ,
31
+ urlSection : "calendars" ,
32
+ path : PATHS . ADMIN_INTEGRATIONS_CALENDARS ,
33
+ Card : Calendars ,
34
+ } ,
35
+ ] ;
38
36
39
- export default getFilteredIntegrationSettingsNavItems ;
37
+ export default integrationSettingsNavItems ;
0 commit comments