endpoint anpassen

This commit is contained in:
Tizian.Breuch
2025-09-30 13:22:58 +02:00
parent eff6d8d8aa
commit b88af92095
20 changed files with 354 additions and 74 deletions

View File

@@ -8,7 +8,7 @@ import { AdminShopInfo } from '../../core/models/shop.model';
export class ShopInfoService {
private http = inject(HttpClient);
private apiUrl = inject(API_URL);
private readonly endpoint = '/AdminShopInfo';
private readonly endpoint = '/admin/AdminShopInfo';
get(): Observable<AdminShopInfo> {
return this.http.get<AdminShopInfo>(`${this.apiUrl}${this.endpoint}`);