Selaa lähdekoodia

pointed towards deployed backend

David Thornley 6 vuotta sitten
vanhempi
commit
e4a2b03e4f
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1
    1
      zlg/src/providers/post-service/post-service.ts

+ 1
- 1
zlg/src/providers/post-service/post-service.ts Näytä tiedosto

@@ -16,7 +16,7 @@ export class PostServiceProvider {
16 16
   }
17 17
 
18 18
   getAllPosts(page){
19
-    return this.http.get("http://localhost:8080/posts/all?page="+page);
19
+    return this.http.get("https://fast-headland-39537.herokuapp.com/posts/all?page="+page);
20 20
                     // .map(this.extractData)
21 21
                     // .catch(this.handleError);
22 22
   }