mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
28 lines
1.2 KiB
TypeScript
28 lines
1.2 KiB
TypeScript
import { Injectable } from "@angular/core";
|
|
import { Http } from "@angular/http";
|
|
import { AuthedApi } from "../authed-api";
|
|
import { FE_Bridge, FE_Widget } from "../../models/integration";
|
|
|
|
@Injectable()
|
|
export class AdminIntegrationsApiService extends AuthedApi {
|
|
constructor(http: Http) {
|
|
super(http);
|
|
}
|
|
|
|
public getAllWidgets(): Promise<FE_Widget[]> {
|
|
return this.authedGet("/api/v1/dimension/admin/integrations/widget/all").map(r => r.json()).toPromise();
|
|
}
|
|
|
|
public getAllBridges(): Promise<FE_Bridge<any>[]> {
|
|
return this.authedGet("/api/v1/dimension/admin/integrations/bridge/all").map(r => r.json()).toPromise();
|
|
}
|
|
|
|
public toggleIntegration(category: string, type: string, enabled: boolean): Promise<any> {
|
|
return this.authedPost("/api/v1/dimension/admin/integrations/" + category + "/" + type + "/enabled", {enabled: enabled}).map(r => r.json()).toPromise();
|
|
}
|
|
|
|
public setIntegrationOptions(category: string, type: string, options: any): Promise<any> {
|
|
return this.authedPost("/api/v1/dimension/admin/integrations/" + category + "/" + type + "/options", {options: options}).map(r => r.json()).toPromise();
|
|
}
|
|
}
|