Set url function to private.

This commit is contained in:
Alexis Lahouze 2017-07-31 13:16:18 +02:00
parent dc30f38662
commit 0b0c771558
2 changed files with 3 additions and 2 deletions

View File

@ -12,13 +12,14 @@ export class AccountService {
private http: HttpClient
) {}
url(id?: Number): string {
private url(id?: Number): string {
if(id) {
return `/api/account/${id}`;
}
return `/api/account`;
}
query(): Observable<Account[]> {
return this.http.get<Account[]>(this.url());
}

View File

@ -23,7 +23,7 @@ export class OperationService {
return date;
}
url(id?: Number): string {
private url(id?: Number): string {
if(id) {
return `/api/operation/${id}`;
}