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 {
constructor(inviteStore) {
this._inviteStore = inviteStore;
}
constructor(inviteStore) {
this._inviteStore = inviteStore;
}
getAll() {
return this._inviteStore.selectAll();
}
getAll() {
return this._inviteStore.selectAll();
}
set(invite) {
return this._inviteStore.put(invite);
}
set(invite) {
return this._inviteStore.put(invite);
}
remove(roomId) {
this._store.delete(roomId);