feat: Add webcam basic support

This commit is contained in:
2026-03-30 03:10:44 +02:00
parent 727059fb52
commit b7d4bf20e3
40 changed files with 1042 additions and 296 deletions

View File

@@ -10,7 +10,8 @@ import {
User,
BanEntry,
VoiceState,
ScreenShareState
ScreenShareState,
CameraState
} from '../../shared-kernel';
export const UsersActions = createActionGroup({
@@ -52,6 +53,7 @@ export const UsersActions = createActionGroup({
'Update Host': props<{ userId: string }>(),
'Update Voice State': props<{ userId: string; voiceState: Partial<VoiceState> }>(),
'Update Screen Share State': props<{ userId: string; screenShareState: Partial<ScreenShareState> }>()
'Update Screen Share State': props<{ userId: string; screenShareState: Partial<ScreenShareState> }>(),
'Update Camera State': props<{ userId: string; cameraState: Partial<CameraState> }>()
}
});