We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff83914 commit 9afe2f8Copy full SHA for 9afe2f8
2 files changed
src/data/paths.yaml
@@ -80,3 +80,17 @@
80
title: Enrollment Automations
81
resources:
82
- enrollment_automation
83
+
84
+/noise_sensors:
85
+ title: Noise Sensors
86
+ resources:
87
+ - noise_sensor
88
89
+/noise_sensors/simulate:
90
+ title: Noise Sensor Simulations
91
+ resources: []
92
93
+/noise_sensors/noise_threshold:
94
+ title: Noise Thresholds
95
96
+ - noise_threshold
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('/noise_sensors')
62
) {
63
continue
64
}
0 commit comments