register timemaster plugin

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2026-04-20 20:54:25 +02:00
parent a8163c1139
commit 3c85fa61b6
4 changed files with 30 additions and 0 deletions
+1
View File
@@ -19,6 +19,7 @@
<script src="./actions/GiteaPRAction.js"></script>
<script src="./actions/RailwayAction.js"></script>
<script src="./actions/StreamAction.js"></script>
<script src="./actions/TimemasterAction.js"></script>
<script src="./app.js"></script>
</body>
</html>
+2
View File
@@ -26,6 +26,8 @@ $UD.onAdd(jsn => {
ACTION_CACHES[context] = new RailwayAction($UD, context);
} else if (name === 'stream') {
ACTION_CACHES[context] = new StreamAction($UD, context);
} else if (name === 'timemaster') {
ACTION_CACHES[context] = new TimemasterAction($UD, context);
}
}