refactor: Cleaning rooms store

This commit is contained in:
2026-04-11 13:07:46 +02:00
parent ef1182d46f
commit 6800c73292
6 changed files with 1843 additions and 1699 deletions

View File

@@ -19,6 +19,8 @@ import { MessagesSyncEffects } from './store/messages/messages-sync.effects';
import { UsersEffects } from './store/users/users.effects';
import { RoomsEffects } from './store/rooms/rooms.effects';
import { RoomMembersSyncEffects } from './store/rooms/room-members-sync.effects';
import { RoomStateSyncEffects } from './store/rooms/room-state-sync.effects';
import { RoomSettingsEffects } from './store/rooms/room-settings.effects';
import { STORE_DEVTOOLS_MAX_AGE } from './core/constants';
/** Root application configuration providing routing, HTTP, NgRx store, and devtools. */
@@ -38,7 +40,9 @@ export const appConfig: ApplicationConfig = {
MessagesSyncEffects,
UsersEffects,
RoomsEffects,
RoomMembersSyncEffects
RoomMembersSyncEffects,
RoomStateSyncEffects,
RoomSettingsEffects
]),
provideStoreDevtools({
maxAge: STORE_DEVTOOLS_MAX_AGE,