feat: Add user statuses and cards
This commit is contained in:
@@ -8,6 +8,7 @@ import {
|
||||
} from '@ngrx/store';
|
||||
import {
|
||||
User,
|
||||
UserStatus,
|
||||
BanEntry,
|
||||
VoiceState,
|
||||
ScreenShareState,
|
||||
@@ -55,6 +56,9 @@ export const UsersActions = createActionGroup({
|
||||
|
||||
'Update Voice State': props<{ userId: string; voiceState: Partial<VoiceState> }>(),
|
||||
'Update Screen Share State': props<{ userId: string; screenShareState: Partial<ScreenShareState> }>(),
|
||||
'Update Camera State': props<{ userId: string; cameraState: Partial<CameraState> }>()
|
||||
'Update Camera State': props<{ userId: string; cameraState: Partial<CameraState> }>(),
|
||||
|
||||
'Set Manual Status': props<{ status: UserStatus | null }>(),
|
||||
'Update Remote User Status': props<{ userId: string; status: UserStatus }>()
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user