diff --git a/src/stores/GroupStore.js b/src/stores/GroupStore.js index e169e13ddc..66bc293b44 100644 --- a/src/stores/GroupStore.js +++ b/src/stores/GroupStore.js @@ -92,6 +92,10 @@ export default class GroupStore extends EventEmitter { this._fetchMembers(); } + unregisterListener(fn) { + this.removeListener('update', fn); + } + getSummary() { return this._summary; }