fix indenting
This commit is contained in:
parent
81a35639ba
commit
39c772300a
1 changed files with 9 additions and 9 deletions
|
@ -15,17 +15,17 @@ limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export class InviteStore {
|
export class InviteStore {
|
||||||
constructor(inviteStore) {
|
constructor(inviteStore) {
|
||||||
this._inviteStore = inviteStore;
|
this._inviteStore = inviteStore;
|
||||||
}
|
}
|
||||||
|
|
||||||
getAll() {
|
getAll() {
|
||||||
return this._inviteStore.selectAll();
|
return this._inviteStore.selectAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
set(invite) {
|
set(invite) {
|
||||||
return this._inviteStore.put(invite);
|
return this._inviteStore.put(invite);
|
||||||
}
|
}
|
||||||
|
|
||||||
remove(roomId) {
|
remove(roomId) {
|
||||||
this._store.delete(roomId);
|
this._store.delete(roomId);
|
||||||
|
|
Reference in a new issue