Add option to specify volume in Diskstation widget

This commit is contained in:
Sebastian Osiński 2023-04-01 01:10:00 +02:00
parent 2a56fd9992
commit f55ba3b67a
2 changed files with 15 additions and 3 deletions

View file

@ -249,7 +249,8 @@ export function cleanServiceGroups(groups) {
podSelector,
wan, // opnsense widget,
enableBlocks, // emby/jellyfin
enableNowPlaying
enableNowPlaying,
volume // diskstation widget
} = cleanedService.widget;
const fieldsList = typeof fields === 'string' ? JSON.parse(fields) : fields;
@ -284,6 +285,9 @@ export function cleanServiceGroups(groups) {
if (enableBlocks) cleanedService.widget.enableBlocks = enableBlocks === 'true';
if (enableNowPlaying) cleanedService.widget.enableNowPlaying = enableNowPlaying === 'true';
}
if (type === "diskstation") {
if (volume) cleanedService.widget.volume = volume;
}
}
return cleanedService;