Skip to content

Commit

Permalink
feat: add fuse box name + description for admin UI
Browse files Browse the repository at this point in the history
  • Loading branch information
plaa committed Jun 30, 2024
1 parent c310d39 commit 6cd9015
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions db/redux/box/fuseboxes.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ const boxes = [
{
type: 'box',
id: 'fusebox_medbay',
// name and description are shown in Admin UI
name: 'Medbay',
description: 'DMX fuse controls standing scanner (?)',
config: {
blowing: [4, 15, 18, 22, 24, 9, 11, 7],
measure: [14, 17, 27, 23, 10, 25, 8, 5],
Expand All @@ -13,6 +16,8 @@ const boxes = [
{
type: 'box',
id: 'fusebox_engineering',
name: 'Engineering',
description: 'DMX fuse controls Engineering displays',
config: {
blowing: [4, 15, 18, 22, 24, 9, 11, 7],
measure: [14, 17, 27, 23, 10, 25, 8, 5],
Expand All @@ -24,6 +29,8 @@ const boxes = [
{
type: 'box',
id: 'fusebox_bridge',
name: 'Bridge',
description: 'DMX fuse controls Bridge displays',
config: {
blowing: [4, 15, 18, 22, 24, 9, 11, 7, 6, 13, 16, 20],
measure: [14, 17, 27, 23, 10, 25, 8, 5, 12, 19, 26, 21],
Expand All @@ -35,6 +42,8 @@ const boxes = [
{
type: 'box',
id: 'fusebox_science',
name: 'Science lab',
description: 'DMX fuse controls Science lab lights + projector',
config: {
blowing: [4, 15, 18, 22, 24, 9, 11, 7],
measure: [14, 17, 27, 23, 10, 25, 8, 5],
Expand All @@ -46,6 +55,8 @@ const boxes = [
{
type: 'box',
id: 'fusebox_lounge',
name: 'Armory',
description: 'DMX fuse controls Security room monitors',
config: {
blowing: [4, 15, 18, 22, 24, 9, 11, 7],
measure: [14, 17, 27, 23, 10, 25, 8, 5],
Expand Down

0 comments on commit 6cd9015

Please sign in to comment.