import {Injectable} from "@angular/core"; import {AppConfig} from "../../app.config"; import {HttpClient} from "../http-client"; @Injectable() export class PlayerService { constructor(private http: HttpClient, private config: AppConfig) { } getCampaignPlayer(campaignId: string, playerName: string) { return this.http.get(this.config.apiPlayersPath + '/single/' + campaignId + '/' + playerName) .map(res => res.json()) } getCampaignHighscore(campaignId: string) { return this.http.get(this.config.apiPlayersPath + '/ranking/' + campaignId) .map(res => res.json()) } }