AP-139 #141

Merged
Huffle merged 4 commits from AP-139 into main 2025-06-26 09:08:58 +02:00
4 changed files with 4 additions and 4 deletions
Showing only changes of commit 4f3b491379 - Show all commits

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>> {