mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
24 lines
792 B
TypeScript
24 lines
792 B
TypeScript
import { Injectable } from "@angular/core";
|
|
import { Http } from "@angular/http";
|
|
import { AuthedApi } from "../authed-api";
|
|
import { FE_DimensionConfig, FE_DimensionVersion } from "../../models/admin-responses";
|
|
|
|
@Injectable()
|
|
export class AdminApiService extends AuthedApi {
|
|
constructor(http: Http) {
|
|
super(http);
|
|
}
|
|
|
|
public isAdmin(): Promise<any> {
|
|
return this.authedGet("/api/v1/dimension/admin/check").map(r => r.json()).toPromise();
|
|
}
|
|
|
|
public getConfig(): Promise<FE_DimensionConfig> {
|
|
return this.authedGet("/api/v1/dimension/admin/config").map(r => r.json()).toPromise();
|
|
}
|
|
|
|
public getVersion(): Promise<FE_DimensionVersion> {
|
|
return this.authedGet("/api/v1/dimension/admin/version").map(r => r.json()).toPromise();
|
|
}
|
|
}
|