Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6d051b84f6 | ||
|
|
f3daca7ed7 |
@@ -41,3 +41,21 @@ From the core checkout:
|
||||
cd /mnt/DATA/git/govoplan-core
|
||||
./.venv/bin/python -m pip install -e ../govoplan-identity
|
||||
```
|
||||
|
||||
## Git-source WebUI package
|
||||
|
||||
The repository root exposes `@govoplan/identity-webui` for Git-tagged release
|
||||
dependencies. It mirrors the owning `webui/package.json` version, public
|
||||
TypeScript/CSS exports and peer requirements, with entry paths under
|
||||
`webui/src`. Consumers provide the shared Core/React peers; the facade runs no
|
||||
development or install scripts. The source archive contains `webui/src`, this
|
||||
README and any repository license file. Run module development checks from `webui/`; Python
|
||||
installation remains governed by `pyproject.toml`.
|
||||
|
||||
Das Repository stellt `@govoplan/identity-webui` am Wurzelpfad für versionierte
|
||||
Git-Abhängigkeiten bereit. Version, öffentliche TypeScript-/CSS-Exporte und
|
||||
Peer-Anforderungen entsprechen `webui/package.json`; die Einstiegspfade liegen
|
||||
unter `webui/src`. Gemeinsame Core-/React-Peers stellt die einbindende Anwendung
|
||||
bereit. Die Fassade führt keine Entwicklungs- oder Installationsskripte aus.
|
||||
Entwicklungsprüfungen bleiben in `webui/`, die Python-Installation weiterhin in
|
||||
`pyproject.toml` definiert.
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "@govoplan/identity-webui",
|
||||
"version": "0.1.21",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "webui/src/index.ts",
|
||||
"module": "webui/src/index.ts",
|
||||
"types": "webui/src/index.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./webui/src/index.ts",
|
||||
"import": "./webui/src/index.ts"
|
||||
},
|
||||
"./styles/identity.css": "./webui/src/styles/identity.css"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@govoplan/core-webui": "^0.1.18",
|
||||
"lucide-react": "^1.23.0",
|
||||
"react": ">=19.2.7 <20",
|
||||
"react-dom": ">=19.2.7 <20"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@govoplan/core-webui": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"webui/src",
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
]
|
||||
}
|
||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "govoplan-identity"
|
||||
version = "0.1.19"
|
||||
version = "0.1.21"
|
||||
description = "GovOPlaN identity directory module."
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
"""GovOPlaN identity module."""
|
||||
|
||||
__version__ = "0.1.19"
|
||||
__version__ = "0.1.21"
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
"""German translations for public structured documentation metadata."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
||||
|
||||
GERMAN_STRUCTURED_TRANSLATIONS: dict[str, dict[str, Any]] = {'identity.administration': {'outcome': 'Canonical Identität und Link Zustand ändert sich atomar '
|
||||
'mit system-scoped Audit-Beweis.',
|
||||
'prerequisites': ['Der Administrator verfügt über die Berechtigung '
|
||||
'zur Verwaltung der Systemidentität.',
|
||||
'Konto-IDs werden von einem autorisierten '
|
||||
'Access-Verwaltungsworkflow abgerufen.'],
|
||||
'verification': 'Laden Sie die Identität neu, überprüfen Sie den '
|
||||
'primären Marker und den Lebenszykluszustand und '
|
||||
'prüfen Sie dann die entsprechenden '
|
||||
'Systemaudit-Aufzeichnungen.'},
|
||||
'identity.data-subject-requests': {'consequence_classes': {'corroborated_export': 'Gibt nur ein '
|
||||
'übereinstimmendes '
|
||||
'Identitäts-/Konto-Link-Paar '
|
||||
'an.',
|
||||
'manual_erasure_review': 'Verhindert, '
|
||||
'dass eine '
|
||||
'Mandantenanfrage '
|
||||
'den '
|
||||
'systemweiten '
|
||||
'Identitätsstatus '
|
||||
'ändert.'}},
|
||||
'identity.lifecycle': {'outcome': 'Identitätssichtbarkeit oder Statusänderungen des Primärkontos, '
|
||||
'ohne die Herkunft des Kontolinks zu löschen.',
|
||||
'prerequisites': ['Der Anrufer hat eine separate Lifecycle-Berechtigung '
|
||||
'eingerichtet.',
|
||||
'Das Ersatz-Primärkonto ist bereits mit der Identität '
|
||||
'verknüpft.'],
|
||||
'verification': 'Bestätigen Sie gewöhnliche versus inaktive '
|
||||
'Verzeichnisergebnisse, überprüfen Sie jeden beibehaltenen '
|
||||
'Kontolink und überprüfen Sie den entsprechenden '
|
||||
'Identitätslebenszyklus-Audit-Record.'}}
|
||||
@@ -1,5 +1,8 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from govoplan_core.core.modules import with_documentation_structured_translations
|
||||
from govoplan_identity.backend.german_structured_documentation import GERMAN_STRUCTURED_TRANSLATIONS
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
from govoplan_core.core.access import (
|
||||
@@ -115,7 +118,7 @@ def _dsar_provider(context: ModuleContext) -> IdentityDsarProvider:
|
||||
manifest = ModuleManifest(
|
||||
id="identity",
|
||||
name="Identity",
|
||||
version="0.1.19",
|
||||
version="0.1.21",
|
||||
required_capabilities=(
|
||||
CAPABILITY_AUTH_PRINCIPAL_RESOLVER,
|
||||
CAPABILITY_AUTH_PERMISSION_EVALUATOR,
|
||||
@@ -362,5 +365,10 @@ manifest = ModuleManifest(
|
||||
)
|
||||
|
||||
|
||||
manifest = with_documentation_structured_translations(
|
||||
manifest, locale="de", translations=GERMAN_STRUCTURED_TRANSLATIONS
|
||||
)
|
||||
|
||||
|
||||
def get_manifest() -> ModuleManifest:
|
||||
return manifest
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@govoplan/identity-webui",
|
||||
"version": "0.1.19",
|
||||
"version": "0.1.21",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "src/index.ts",
|
||||
|
||||
Reference in New Issue
Block a user