From b44d751002d4fa4ad6781c478187c4f4a1f06650 Mon Sep 17 00:00:00 2001 From: Jan-Robin Aumann Date: Thu, 19 Sep 2024 15:42:28 +0200 Subject: [PATCH 1/2] remove line that overwrites the default value --- src/frontend/packages/core/src/app.module.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/frontend/packages/core/src/app.module.ts b/src/frontend/packages/core/src/app.module.ts index d41a01dcb..24a41205e 100644 --- a/src/frontend/packages/core/src/app.module.ts +++ b/src/frontend/packages/core/src/app.module.ts @@ -257,7 +257,6 @@ export class AppModule { ); customizationService.setAppNameFromTitle(); - customizationService.get().appName = 'Zuun'; } private syncFavorite(favorite: UserFavorite, entities: GeneralRequestDataState) { From 68271c667771d949737c35b948734f7fa9572aee Mon Sep 17 00:00:00 2001 From: Jan-Robin Aumann Date: Thu, 19 Sep 2024 15:44:52 +0200 Subject: [PATCH 2/2] Add documentation for appName --- website/docs/extensions/frontend.md | 1 + 1 file changed, 1 insertion(+) diff --git a/website/docs/extensions/frontend.md b/website/docs/extensions/frontend.md index 3a72048b8..6d192f401 100644 --- a/website/docs/extensions/frontend.md +++ b/website/docs/extensions/frontend.md @@ -266,6 +266,7 @@ A customization service provides a number of smaller extension points. |Property | Description| |--|--| +|appName| Product name, default is 'Stratos' but can be changed to an arbitrary string | |hasEula| True if there's a EULA to show. When set to true the asset `/core/eula.html` must exist. For information about custom package assets see the images section [here](./theming#new-images). | |copyright| Text shown at the bottom of the side nav| |logoText| Text shown with the side nav logo|