From 12ad70320c1b47f9613f26910bf72c9fda692495 Mon Sep 17 00:00:00 2001 From: Ingo Neuse Date: Wed, 12 Jun 2024 11:07:13 +0200 Subject: [PATCH] added missing translation --- docs/.vitepress/config.mts | 2 +- docs/development/backend/authentication.md | 18 ++++++++---------- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index fa96cbc..d4cc5f7 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -62,7 +62,7 @@ export default withMermaid({ link: '/development/backend/overview', items: [ { - text: 'Authentication', + text: 'Authentifizierung', link: '/development/backend/authentication', }, { text: 'Logging', link: '/development/backend/logging' }, diff --git a/docs/development/backend/authentication.md b/docs/development/backend/authentication.md index e9dd64f..691011a 100644 --- a/docs/development/backend/authentication.md +++ b/docs/development/backend/authentication.md @@ -1,17 +1,15 @@ -# Authentication +# Authentifizierung -> [!WARNING] -> The currently used authentication mechanism is subject to changes and only intended for development purposes. +> [!WARNING] Warnung +> Der aktuelle Authentifizierungsmechanismus ist nur für Entwicklungszwecke und kann sich in Zukunft ändern. -## Local Authentication (Development) +## Lokale Authentifizierung (Entwicklung) -During development `Basic`-Authentication is enabled to make authentication easier. You need to supply a username and a password. -There are example users available, when using the database seeds. +Um die Authentifizierung während der Entwicklung zu vereinfachen wird `Basic`-Authentication eingesetzt. Testnutzer werden mithilfe von Datenbank-Seeds bereitgestellt. -### Example Users +### Testnutzer -The password for all available example users is -`1234`. -Please note that those users are not available in production. +Das Passwort aller Testnutzer ist `1234`. +Diese Nutzer sind in der Produktivumgebung nicht verfügbar. - `max@example.org`: Max Mustermann