Add kick, ban & unban api
This commit is contained in:
parent
92a8b4afd0
commit
7cfd34823b
1 changed files with 21 additions and 0 deletions
|
@ -285,6 +285,27 @@ export class HomeServerApi {
|
|||
return this._post(`/rooms/${encodeURIComponent(roomId)}/forget`, {}, {}, options);
|
||||
}
|
||||
|
||||
kick(roomId: string, userId: string, reason?: string, options?: BaseRequestOptions): IHomeServerRequest {
|
||||
return this._post(`/rooms/${encodeURIComponent(roomId)}/kick`, {}, {
|
||||
user_id: userId,
|
||||
reason: reason,
|
||||
}, options);
|
||||
}
|
||||
|
||||
ban(roomId: string, userId: string, reason?: string, options?: BaseRequestOptions): IHomeServerRequest {
|
||||
return this._post(`/rooms/${encodeURIComponent(roomId)}/ban`, {}, {
|
||||
user_id: userId,
|
||||
reason: reason,
|
||||
}, options);
|
||||
}
|
||||
|
||||
unban(roomId: string, userId: string, reason?: string, options?: BaseRequestOptions): IHomeServerRequest {
|
||||
return this._post(`/rooms/${encodeURIComponent(roomId)}/unban`, {}, {
|
||||
user_id: userId,
|
||||
reason: reason,
|
||||
}, options);
|
||||
}
|
||||
|
||||
logout(options?: BaseRequestOptions): IHomeServerRequest {
|
||||
return this._post(`/logout`, {}, {}, options);
|
||||
}
|
||||
|
|
Reference in a new issue