Skip to content

Commit 9afe2f8

Browse files
Generate all the noise_sensor routes and endpoints
1 parent ff83914 commit 9afe2f8

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

src/data/paths.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,17 @@
8080
title: Enrollment Automations
8181
resources:
8282
- 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+
resources:
96+
- noise_threshold

src/lib/reference.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ export const reference = (
5757
!route.path.startsWith('/acs') &&
5858
!route.path.startsWith('/thermostats') &&
5959
!route.path.startsWith('/phones') &&
60-
!route.path.startsWith('/user_identities')
60+
!route.path.startsWith('/user_identities') &&
61+
!route.path.startsWith('/noise_sensors')
6162
) {
6263
continue
6364
}

0 commit comments

Comments
 (0)