network calls to accept and reject invite
This commit is contained in:
parent
bb1c64e1ac
commit
5ce138539b
2 changed files with 10 additions and 0 deletions
|
@ -185,6 +185,14 @@ export class HomeServerApi {
|
|||
getPushers(options = null) {
|
||||
return this._get("/pushers", null, null, options);
|
||||
}
|
||||
|
||||
join(roomId, options = null) {
|
||||
return this._post(`/rooms/${encodeURIComponent(roomId)}/join`, null, null, options);
|
||||
}
|
||||
|
||||
leave(roomId, options = null) {
|
||||
return this._post(`/rooms/${encodeURIComponent(roomId)}/leave`, null, null, options);
|
||||
}
|
||||
}
|
||||
|
||||
import {Request as MockRequest} from "../../mocks/Request.js";
|
||||
|
|
|
@ -70,11 +70,13 @@ export class Invite extends EventEmitter {
|
|||
async accept() {
|
||||
this._accepting = true;
|
||||
this._emitChange("accepting");
|
||||
await this._hsApi.join(this._roomId).response();
|
||||
}
|
||||
|
||||
async reject() {
|
||||
this._rejecting = true;
|
||||
this._emitChange("rejecting");
|
||||
await this._hsApi.leave(this._roomId).response();
|
||||
}
|
||||
|
||||
get accepting() {
|
||||
|
|
Reference in a new issue