Skip to content

Commit

Permalink
Changed API IP for being in production
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertSuarez committed Oct 6, 2019
1 parent c3a3d0b commit 76f1724
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/service/Service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default class Service implements IService {
return new Promise<IUserMainModel>((resolve,reject)=>{
let headers = new Headers();

fetch("http://localhost:8084/user?github_user="+username,{
fetch("http://134.209.244.212:8084/user?github_user="+username,{
headers: headers,
method: 'GET',
})
Expand All @@ -29,7 +29,7 @@ export default class Service implements IService {
return new Promise<string>((resolve,reject)=>{
let headers = new Headers();

fetch("http://localhost:8084/spotify/login",{
fetch("http://134.209.244.212:8084/spotify/login",{
headers: headers,
method: 'GET',
})
Expand All @@ -50,7 +50,7 @@ export default class Service implements IService {
return new Promise<string>((resolve,reject)=>{
let headers = new Headers();

fetch("http://localhost:8084/spotify/playlist?code="+code+"&github_user="+username,{
fetch("http://134.209.244.212:8084/spotify/playlist?code="+code+"&github_user="+username,{
headers: headers,
method: 'GET',
})
Expand Down

0 comments on commit 76f1724

Please sign in to comment.