fix(gateway): require auth for canvas host and a2ui assets (#9518) (thanks @coygeek)

This commit is contained in:
George Pickett
2026-02-05 16:22:34 -08:00
parent 47538bca4d
commit a459e237e8
9 changed files with 314 additions and 33 deletions

View File

@@ -882,6 +882,7 @@ export function attachGatewayWsMessageHandler(params: {
connect: connectParams,
connId,
presenceKey,
clientIp: reportedClientIp,
};
setClient(nextClient);
setHandshakeState("connected");

View File

@@ -6,4 +6,5 @@ export type GatewayWsClient = {
connect: ConnectParams;
connId: string;
presenceKey?: string;
clientIp?: string;
};