fix indenting

This commit is contained in:
Bruno Windels 2021-04-20 16:21:35 +02:00
parent 81a35639ba
commit 39c772300a

View file

@ -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);