William Simkins 6 년 전
부모
커밋
1b8ed99867
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      src/providers/api/api.ts

+ 2
- 2
src/providers/api/api.ts 파일 보기

@@ -15,11 +15,11 @@ export class ApiProvider {
15 15
   }
16 16
 
17 17
   getTopics() {
18
-    this.http.get("http://localhost:8100/topics")
18
+    this.http.get("http://localhost:8080/topics")
19 19
   }
20 20
 
21 21
   getUsers(Userid) {
22
-    this.http.get("http://localhost:8100/users")
22
+    this.http.get("http://localhost:8080/users")
23 23
   }
24 24
 
25 25