Skip to content

Commit

Permalink
Merge pull request #7 from GeorgeWalker/master
Browse files Browse the repository at this point in the history
Remove local reference
  • Loading branch information
GeorgeWalker authored Mar 12, 2018
2 parents d461bc5 + 13e9dc2 commit 66ba199
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class CollectionsService {
let headers = new Headers();
headers.append("Content-Type", "application/json");

return this.http.get("http://localhost:9010/api/archives/" + id, {
return this.http.get("/api/archives/" + id, {
headers: headers
})
.toPromise()
Expand All @@ -38,7 +38,7 @@ export class CollectionsService {
let headers = new Headers();
headers.append("Content-Type", "application/json");

return this.http.get("http://localhost:9010/api/collections/" + id + "/archives", {
return this.http.get("/api/collections/" + id + "/archives", {
headers: headers
})
.toPromise()
Expand Down Expand Up @@ -69,7 +69,7 @@ export class CollectionsService {
let headers = new Headers();
headers.append("Content-Type", "application/json");

return this.http.get("http://localhost:9010/api/collections", {
return this.http.get("/api/collections", {
headers: headers
})
.toPromise()
Expand Down Expand Up @@ -98,7 +98,7 @@ export class CollectionsService {
let headers = new Headers();
headers.append("Content-Type", "application/json");

return this.http.get("http://localhost:9010/api/collections/" + id , {
return this.http.get("/api/collections/" + id , {
headers: headers
})
.toPromise()
Expand Down

0 comments on commit 66ba199

Please sign in to comment.