import { Injectable } from "@angular/core"; import { AuthedApi } from "../authed-api"; import { FE_PortalInfo } from "../../models/telegram"; import { HttpClient } from "@angular/common/http"; @Injectable() export class TelegramApiService extends AuthedApi { constructor(http: HttpClient) { super(http); } public getPortalInfo(chatId: number, roomId: string): Promise { return this.authedGet("/api/v1/dimension/telegram/chat/" + chatId, {roomId: roomId}).toPromise(); } public bridgeRoom(roomId: string, chatId: number, unbridgeOtherPortals = false): Promise { return this.authedPost("/api/v1/dimension/telegram/chat/" + chatId + "/room/" + roomId, {unbridgeOtherPortals}).toPromise(); } public unbridgeRoom(roomId: string): Promise { return this.authedDelete("/api/v1/dimension/telegram/room/" + roomId).toPromise(); } }