+
+
+ {{ fileStatus.numberOfPages }}
+
+
+
+ {{ fileStatus.numberOfExcludedPages }}
+
+
{{ fileStatus.ocrTime | date: 'mediumDate' }}
diff --git a/apps/red-ui/src/assets/i18n/de.json b/apps/red-ui/src/assets/i18n/de.json
index 4d4e45e33..cfd162f3f 100644
--- a/apps/red-ui/src/assets/i18n/de.json
+++ b/apps/red-ui/src/assets/i18n/de.json
@@ -1024,7 +1024,7 @@
},
"title": "Aktivieren Sie die Authentifizierung"
},
- "smtp-config-screen": {
+ "general-config-screen": {
"actions": {
"save": "Konfigurationen speichern",
"test-connection": "Testverbindung"
diff --git a/apps/red-ui/src/assets/i18n/en.json b/apps/red-ui/src/assets/i18n/en.json
index 575881c72..9a251498a 100644
--- a/apps/red-ui/src/assets/i18n/en.json
+++ b/apps/red-ui/src/assets/i18n/en.json
@@ -1244,11 +1244,15 @@
},
"title": "Enable Authentication"
},
- "smtp-config-screen": {
+ "general-config-screen": {
"actions": {
"save": "Save Configurations",
"test-connection": "Test Connection"
},
+ "app-name": {
+ "label": "Application Name",
+ "placeholder": "RedactManager"
+ },
"form": {
"auth": "Enable Authentication",
"change-credentials": "Change Credentials",
diff --git a/docker/red-ui/docker-entrypoint.sh b/docker/red-ui/docker-entrypoint.sh
index 57c9ace31..0482741aa 100755
--- a/docker/red-ui/docker-entrypoint.sh
+++ b/docker/red-ui/docker-entrypoint.sh
@@ -2,7 +2,6 @@
OAUTH_CLIENT_ID="${OAUTH_CLIENT_ID:-gin-client}"
OAUTH_URL="${OAUTH_URL:-https://keycloak-dev.iqser.cloud/auth/realms/dev}"
-APP_NAME="${APP_NAME:-DDA-R}"
API_URL="${API_URL:-}"
OAUTH_IDP_HINT="${OAUTH_IDP_HINT:-}"
ADMIN_CONTACT_NAME="${ADMIN_CONTACT_NAME:-}"
@@ -34,7 +33,6 @@ echo '{
"LICENSE_PAGE_COUNT":'"$LICENSE_PAGE_COUNT"',
"LICENSE_CUSTOMER":"'"$LICENSE_CUSTOMER"'",
"LICENSE_EMAIL":"'"$LICENSE_EMAIL"'",
- "APP_NAME":"'"$APP_NAME"'",
"AUTO_READ_TIME":'"$AUTO_READ_TIME"',
"SELECTION_MODE":"'"$SELECTION_MODE"'",
"MAX_FILE_SIZE_MB":"'"$MAX_FILE_SIZE_MB"'",
diff --git a/libs/red-ui-http/src/lib/model/generalConfigurationModel.ts b/libs/red-ui-http/src/lib/model/generalConfigurationModel.ts
index fdb3b9a7c..3b5b6d659 100644
--- a/libs/red-ui-http/src/lib/model/generalConfigurationModel.ts
+++ b/libs/red-ui-http/src/lib/model/generalConfigurationModel.ts
@@ -12,4 +12,5 @@
export interface GeneralConfigurationModel {
forgotPasswordFunctionEnabled?: boolean;
+ displayName?: string;
}