Feature: arcane service widget (#6274)

Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
This commit is contained in:
Kyle Mendell
2026-02-04 20:07:07 -06:00
committed by GitHub
parent 99f1540d8c
commit 7d019185a3
9 changed files with 134 additions and 0 deletions

View File

@@ -258,6 +258,9 @@ export function cleanServiceGroups(groups) {
highlight,
type,
// arcane
env,
// azuredevops
repositoryId,
userEmail,
@@ -472,6 +475,10 @@ export function cleanServiceGroups(groups) {
if (repositoryId) widget.repositoryId = repositoryId;
}
if (type === "arcane") {
if (env !== undefined) widget.env = env;
}
if (type === "beszel") {
if (systemId) widget.systemId = systemId;
}