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;
}