Merge pull request #4629 from node-red/multiplayer-1

Introduce multiplayer feature
This commit is contained in:
Nick O'Leary
2024-04-04 15:24:29 +01:00
committed by GitHub
11 changed files with 404 additions and 1 deletions

View File

@@ -233,6 +233,10 @@ module.exports = {
themeSettings.projects = theme.projects;
}
if (theme.hasOwnProperty("multiplayer")) {
themeSettings.multiplayer = theme.multiplayer;
}
if (theme.hasOwnProperty("keymap")) {
themeSettings.keymap = theme.keymap;
}