stuff
This commit is contained in:
@@ -21,8 +21,8 @@ export class GamesService {
|
||||
private http: HttpClient
|
||||
){ }
|
||||
|
||||
getGames( ): Observable<any> {
|
||||
return this.http.get( this.APIURL + "/games?filter=Played,eq,true&page=1&order=Title&transform=1" )
|
||||
getGames( queryFilters, querryPage, queryOrder ): Observable<any> {
|
||||
return this.http.get( this.APIURL + "/games?filter="+ queryFilters +"&page="+ querryPage +"&order="+ queryOrder +"&transform=1" )
|
||||
.map(res => {
|
||||
return(
|
||||
res
|
||||
|
||||
Reference in New Issue
Block a user