We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff83914 commit f867b0fCopy full SHA for f867b0f
2 files changed
src/data/paths.yaml
@@ -80,3 +80,17 @@
80
title: Enrollment Automations
81
resources:
82
- enrollment_automation
83
+
84
+/devices:
85
+ title: Devices
86
+ resources:
87
+ - device
88
89
+/devices/simulate:
90
+ title: Device Simulations
91
+ resources: []
92
93
+/devices/unmanage:
94
+ title: Unmanage Devices
95
96
+ - unmanaged_device
src/lib/reference.ts
@@ -57,7 +57,8 @@ export const reference = (
57
!route.path.startsWith('/acs') &&
58
!route.path.startsWith('/thermostats') &&
59
!route.path.startsWith('/phones') &&
60
- !route.path.startsWith('/user_identities')
+ !route.path.startsWith('/user_identities') &&
61
+ !route.path.startsWith('/devices')
62
) {
63
continue
64
}
0 commit comments