Can send text messages in conversations
This commit is contained in:
@@ -80,4 +80,15 @@ export class MatrixApiEvent {
|
||||
room.id
|
||||
}/event/${event_id}/file?thumbnail=${thumbnail}`;
|
||||
}
|
||||
|
||||
/**
|
||||
* Send text message
|
||||
*/
|
||||
static async SendTextMessage(room: Room, content: string): Promise<void> {
|
||||
await APIClient.exec({
|
||||
method: "POST",
|
||||
uri: `/matrix/room/${room.id}/send_text_message`,
|
||||
jsonData: { content },
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user