Add unregiseterListener to GroupStore

pull/21833/head
Luke Barnard 2017-10-27 14:33:10 +01:00
parent a7379db1c2
commit 175fadbb57
1 changed files with 4 additions and 0 deletions

View File

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