Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Firecert 498 #38

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions cli/examples/closed-captions-settings-reset.json

This file was deleted.

27 changes: 0 additions & 27 deletions cli/examples/closed-captions-settings.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion server/src/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import * as commandLine from './commandLine.mjs';
import { getUserIdFromReq } from './util.mjs';
import * as userManagement from './userManagement.mjs';
import * as stateManagement from './stateManagement.mjs';

// -------------------------------------------------- Web Socket --------------------------------------------------

import { createServer } from 'http';
Expand Down Expand Up @@ -59,6 +58,7 @@ server.on('upgrade', function upgrade(request, socket, head) {
}
});


// Starter user(s)
logger.info('Adding user 123...'); stateManagement.addUser('123'); userManagement.addUser('123');
logger.info('Adding user 456...'); stateManagement.addUser('456'); userManagement.addUser('456');
Expand Down