import { Injectable } from "@angular/core"; import { AuthedApi } from "../authed-api"; import { FE_StickerPack } from "../../models/integration"; import { HttpClient } from "@angular/common/http"; @Injectable() export class AdminStickersApiService extends AuthedApi { constructor(http: HttpClient) { super(http); } public getAllPacks(): Promise { return this.authedGet("/api/v1/dimension/admin/stickers/packs").toPromise(); } public togglePack(packId: number, isEnabled: boolean): Promise { return this.authedPost("/api/v1/dimension/admin/stickers/packs/" + packId + "/enabled", {isEnabled: isEnabled}).toPromise(); } public importFromTelegram(packUrl: string): Promise { return this.authedPost("/api/v1/dimension/admin/stickers/packs/import/telegram", {packUrl: packUrl}).toPromise(); } }