change url
Some checks failed
Backend Build and Test / build (push) Has been cancelled

This commit is contained in:
Huffle 2025-06-26 09:07:35 +02:00
parent 43a8447368
commit 4f3b491379
4 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ import { Allowance } from '../models/allowance';
providedIn: 'root'
})
export class AllowanceService {
private url = 'http://localhost:8080/api';
private url = 'https://allowanceplanner.seeseepuff.be/api';
constructor(private http: HttpClient) {}

View File

@ -7,7 +7,7 @@ import { History } from '../models/history';
providedIn: 'root'
})
export class HistoryService {
private url = 'http://localhost:8080/api';
private url = 'https://allowanceplanner.seeseepuff.be/api';
constructor(private http: HttpClient) {}

View File

@ -7,7 +7,7 @@ import { Task } from '../models/task';
providedIn: 'root'
})
export class TaskService {
private url = 'http://localhost:8080/api';
private url = 'https://allowanceplanner.seeseepuff.be/api';
constructor(private http: HttpClient) {}

View File

@ -7,7 +7,7 @@ import { User } from '../models/user';
providedIn: 'root',
})
export class UserService {
private url = 'http://localhost:8080/api';
private url = 'https://allowanceplanner.seeseepuff.be/api';
constructor(private http: HttpClient) {}
getUserList(): Observable<Array<User>> {