mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
21 lines
726 B
TypeScript
21 lines
726 B
TypeScript
|
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<FE_StickerPack[]> {
|
||
|
return this.authedGet("/api/v1/dimension/admin/stickers/packs").map(r => r.json()).toPromise();
|
||
|
}
|
||
|
|
||
|
public togglePack(packId: number, isEnabled: boolean): Promise<any> {
|
||
|
return this.authedPost("/api/v1/dimension/admin/stickers/packs/" + packId + "/enabled", {isEnabled: isEnabled})
|
||
|
.map(r => r.json()).toPromise();
|
||
|
}
|
||
|
}
|