Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing translation in backend documentation #230

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
Expand Down
18 changes: 8 additions & 10 deletions docs/development/backend/authentication.md
Original file line number Diff line number Diff line change
@@ -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.

- `[email protected]`: Max Mustermann
Loading