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