Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
adding static ip to data services
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrotap committed Jun 1, 2023
1 parent b31b11d commit 191149c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/app/services/answer-data.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { HttpHeaders, HttpParams } from '@angular/common/http';
providedIn: 'root'
})
export class AnswerDataService {
private url = 'http://localhost/brain-lift/server/api/answer/';
private url = 'http://3.217.168.97/brain-lift/server/api/answer/';


constructor(private http: HttpClient) { }
Expand Down
2 changes: 1 addition & 1 deletion client/src/app/services/task-data.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { HttpHeaders, HttpParams } from '@angular/common/http';
})

export class TaskDataService {
private url = 'http://localhost/brain-lift/server/api/task/';
private url = 'http://3.217.168.97/brain-lift/server/api/task/';

constructor(private http: HttpClient) { }

Expand Down

0 comments on commit 191149c

Please sign in to comment.