add service detail page

This commit is contained in:
Schneider Roland
2025-05-23 07:40:42 +02:00
committed by Roland Schneider
parent 35f172702a
commit 67839dbfb9
5 changed files with 68 additions and 27 deletions

View File

@@ -1,7 +1,7 @@
{
"fields": ["*"],
"populate": {
"subscribe": {
"subscribeNow": {
"fields": ["*"]
},
"footer": {

View File

@@ -14,6 +14,7 @@ class StrapiClient{
return '/image/'+ imagePath;
}
public async httpGet(path: string){
console.info("httpGet", path);
return await httpClient.httpGet(this.strapiUrl + path);
}
public async httpGetJson<T>(url: string): Promise<Payload<T>>{