1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

Add unregiseterListener to GroupStore

This commit is contained in:
Luke Barnard
2017-10-27 14:33:10 +01:00
parent a7379db1c2
commit 175fadbb57

View File

@@ -92,6 +92,10 @@ export default class GroupStore extends EventEmitter {
this._fetchMembers();
}
unregisterListener(fn) {
this.removeListener('update', fn);
}
getSummary() {
return this._summary;
}