Rename debug user

This commit is contained in:
Laura Hausmann 2023-02-27 16:15:38 +01:00
parent b034bce7cc
commit 1d51d32bc8
Signed by: zotan
GPG Key ID: D044E84C5BE01605
2 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
# Trainav
## DISCLAIMER
- This app uses the `Remote-User` header for authentication. For production use an auth proxy like Authelia is required. In development mode the user is set to `zotan` by default. This can be changed in `AuthUtil.cs`.
- This app uses the `Remote-User` header for authentication. For production use an auth proxy like Authelia is required. In development mode the user is set to `debuguser` by default. This can be changed in `AuthUtil.cs`.
## Development / testing requirements
- .NET Core SDK (version 6.0 or higher; arch package `dotnet-sdk`)
- ASP.NET Core Runtime (version 6.0 or higher; arch package `aspnet-runtime`)
- .NET Core SDK (version 7.0 or higher; arch package `dotnet-sdk`)
- ASP.NET Core Runtime (version 7.0 or higher; arch package `aspnet-runtime`)
- `cd trainav.web`
- `dotnet run`

View File

@ -9,7 +9,7 @@ namespace trainav.web.Utils;
public static class AuthUtil {
public static string GetRemoteUser(HttpContext ctx, Database.DbConn db) {
#if (DEBUG)
const string remoteUser = "zotan";
const string remoteUser = "debuguser";
#else
var remoteUser = ctx.Request.Headers["Remote-User"];
#endif