Make full sessions public

This commit is contained in:
Jim Martens 2021-10-05 14:16:23 +02:00
parent 168874f409
commit f2fc85ebc6
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export class SessionInBodyService {
return this._currentPage;
}
private fullSessions: Observable<SnapshotAction<Session>[]> = new Observable<SnapshotAction<Session>[]>();
public readonly fullSessions: Observable<SnapshotAction<Session>[]>;
private sessionsMap: Map<string, SnapshotAction<Session>[]> = new Map<string, SnapshotAction<Session>[]>();
private subscription: Subscription | undefined;