Bump version to 1.4.1 and tighten client handling
This commit is contained in:
+5
-1
@@ -16,6 +16,7 @@ const registerAdminScreenCommandRoutes = require('./web/routes/admin-screen-comm
|
||||
const registerAdminContentRoutes = require('./web/routes/admin-content');
|
||||
const { createWebBootstrap } = require('./web/bootstrap');
|
||||
const { createPlayerActionService } = require('./web/player-actions');
|
||||
const { isClientNameAvailable } = require('./client-name-check');
|
||||
const { createSessionService } = require('./web/session');
|
||||
const {
|
||||
formatDashboardDate,
|
||||
@@ -168,6 +169,7 @@ async function start() {
|
||||
notifyPlayerScreens: notifyPlayerScreens,
|
||||
broadcastDashboardState: broadcastDashboardState,
|
||||
getScreenDeleteBlockMessage: playerActionService.getScreenDeleteBlockMessage,
|
||||
getScreenConnections: playerActionService.getScreenConnections,
|
||||
getPlaylistDeleteBlockMessage: playerActionService.getPlaylistDeleteBlockMessage,
|
||||
forwardPlayerCommand: playerActionService.forwardPlayerCommand,
|
||||
playerPublicBaseUrl: PLAYER_PUBLIC_BASE_URL
|
||||
@@ -175,7 +177,9 @@ async function start() {
|
||||
|
||||
registerAdminScreenCommandRoutes(app, {
|
||||
pool: pool,
|
||||
forwardPlayerCommand: playerActionService.forwardPlayerCommand
|
||||
forwardPlayerCommand: playerActionService.forwardPlayerCommand,
|
||||
getScreenConnections: playerActionService.getScreenConnections,
|
||||
isClientNameAvailable: isClientNameAvailable
|
||||
});
|
||||
|
||||
registerAdminContentRoutes(app, {
|
||||
|
||||
Reference in New Issue
Block a user