matrix-dimension/web/app/shared/api.service.ts

20 lines
551 B
TypeScript
Raw Normal View History

import { Injectable } from "@angular/core";
import { Http } from "@angular/http";
import { Bot } from "./models/bot";
@Injectable()
export class ApiService {
constructor(private http: Http) {
}
checkScalarToken(token): Promise<boolean> {
return this.http.get("/api/v1/scalar/checkToken", {params: {scalar_token: token}})
.map(res => res.status === 200).toPromise();
}
getBots(): Promise<Bot[]> {
return this.http.get("/api/v1/dimension/bots")
.map(res => res.json()).toPromise();
}
}