Explorar el Código

pointed towards deployed backend

David Thornley hace 6 años
padre
commit
e4a2b03e4f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      zlg/src/providers/post-service/post-service.ts

+ 1
- 1
zlg/src/providers/post-service/post-service.ts Ver fichero

@@ -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
   }