From bec95651f281d3aaf674726fa913b0192f73adc3 Mon Sep 17 00:00:00 2001 From: veenm Date: Wed, 12 Mar 2025 09:08:30 +0000 Subject: [PATCH 1/3] Update src/app/services/appointment.service.ts --- src/app/services/appointment.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/services/appointment.service.ts b/src/app/services/appointment.service.ts index 0bb0ff6..17b53a7 100644 --- a/src/app/services/appointment.service.ts +++ b/src/app/services/appointment.service.ts @@ -6,8 +6,8 @@ import {Appointment} from '../models/appointment'; providedIn: 'root', }) export class AppointmentService { - baseApi = "http://localhost:8080/api/appointments"; - // baseApi = "https://api.melvanveen.nl/api/appointments"; + // baseApi = "http://localhost:8080/api/appointments"; + baseApi = "https://api.melvanveen.nl/api/appointments"; constructor(private http: HttpClient) { } From 3a21ac9077ffd17b77cc85f718e15d3d1a4ec22b Mon Sep 17 00:00:00 2001 From: veenm Date: Wed, 12 Mar 2025 09:09:30 +0000 Subject: [PATCH 2/3] Update src/app/services/auth.service.ts --- src/app/services/auth.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/services/auth.service.ts b/src/app/services/auth.service.ts index 4757e1d..adcb8e8 100644 --- a/src/app/services/auth.service.ts +++ b/src/app/services/auth.service.ts @@ -8,8 +8,8 @@ import {jwtDecode} from 'jwt-decode'; providedIn: 'root', }) export class AuthService { - private baseApi = 'http://localhost:8080/api/auth/login'; - // baseApi = "https://api.melvanveen.nl/api/auth/login"; + // private baseApi = 'http://localhost:8080/api/auth/login'; + baseApi = "https://api.melvanveen.nl/api/auth/login"; jwtHelper = new JwtHelperService(); constructor(private http: HttpClient) {} From 49c5d804b0292d2e590b2003cf5ba0b81aca1d5d Mon Sep 17 00:00:00 2001 From: veenm Date: Wed, 12 Mar 2025 09:09:50 +0000 Subject: [PATCH 3/3] Update src/app/services/customer.service.ts --- src/app/services/customer.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/services/customer.service.ts b/src/app/services/customer.service.ts index f83b141..2a22baf 100644 --- a/src/app/services/customer.service.ts +++ b/src/app/services/customer.service.ts @@ -7,8 +7,8 @@ import {Observable} from 'rxjs'; providedIn: 'root', }) export class CustomerService { - baseApi = "http://localhost:8080/api/customers"; - // baseApi = "https://api.melvanveen.nl/api/customers"; + // baseApi = "http://localhost:8080/api/customers"; + baseApi = "https://api.melvanveen.nl/api/customers"; constructor(private http: HttpClient) {