diff options
author | Devaev Maxim <[email protected]> | 2021-05-01 03:53:29 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2021-05-01 03:53:29 +0300 |
commit | 8dbf2ab3d01fde57c4d432de7f07aaa10660160e (patch) | |
tree | ebca9872c514eca073e496fcfe398a8d55d3fe16 | |
parent | 4422653e40f2a1fe5c24cde3ed51dfe0bd7c9898 (diff) |
janus manifest
-rw-r--r-- | extras/janus/manifest.yaml | 5 | ||||
-rw-r--r-- | web/share/js/index/main.js | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/extras/janus/manifest.yaml b/extras/janus/manifest.yaml new file mode 100644 index 00000000..c01c12df --- /dev/null +++ b/extras/janus/manifest.yaml @@ -0,0 +1,5 @@ +name: Janus +description: Janus WebRTC Gateway +path: janus +daemon: kvmd-janus +place: -1 diff --git a/web/share/js/index/main.js b/web/share/js/index/main.js index 5f715007..a019887e 100644 --- a/web/share/js/index/main.js +++ b/web/share/js/index/main.js @@ -80,7 +80,7 @@ function __loadKvmdInfo() { } for (let app of apps) { - if (app.enabled || app.started) { + if (app.place >= 0 && (app.enabled || app.started)) { $("apps").innerHTML += __makeApp(null, app.path, app.icon, app.name); } } |