aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/configurationApp/src/services/yangService.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/configurationApp/src/services/yangService.ts')
-rw-r--r--sdnr/wt/odlux/apps/configurationApp/src/services/yangService.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdnr/wt/odlux/apps/configurationApp/src/services/yangService.ts b/sdnr/wt/odlux/apps/configurationApp/src/services/yangService.ts
index cf4677bc9..b81a92c14 100644
--- a/sdnr/wt/odlux/apps/configurationApp/src/services/yangService.ts
+++ b/sdnr/wt/odlux/apps/configurationApp/src/services/yangService.ts
@@ -24,8 +24,8 @@ const cache: { [path: string]: string } = {
class YangService {
- public async getCapability(capability: string, version?: string) {
- const url = `/yang-schema/${capability}${version ? `/${version}` : ""}`;
+ public async getCapability(capability: string, nodeId: string, version?: string) {
+ const url = `/yang-schema/${capability}${version ? `/${version}` : ""}?node=${nodeId}`;
const cacheHit = cache[url];
if (cacheHit) return cacheHit;