hydrogen-web/src/storage/idb/stores/summary.js

21 lines
287 B
JavaScript
Raw Normal View History

2019-02-07 06:21:48 +05:30
/**
store contains:
roomId
name
lastMessage
unreadCount
mentionCount
isEncrypted
isDirectMessage
membership
*/
export default class RoomSummaryStore {
constructor(summaryStore) {
this._summaryStore = summaryStore;
}
getAll() {
return this._summaryStore.selectAll();
}
}