diff --git a/src/FiscalOS.API/Login/Endpoint.cs b/src/FiscalOS.API/Login/Endpoint.cs index d505407..42fc8f1 100644 --- a/src/FiscalOS.API/Login/Endpoint.cs +++ b/src/FiscalOS.API/Login/Endpoint.cs @@ -14,9 +14,6 @@ internal static class Endpoint [FromServices] AppDbContext appDbContext ) { - const string ADMIN_USERNAME = "Stevan"; - const string ADMIN_PASSWORD = "@Password1"; - // TODO: Implement actual auth flow // 1. We want to make sure that // the user exists @@ -40,11 +37,6 @@ internal static class Endpoint return Results.Unauthorized(); } - if (loginRequest.Username is not ADMIN_USERNAME || loginRequest.Password is not ADMIN_PASSWORD) - { - return Results.Unauthorized(); - } - return Results.Ok(); } } \ No newline at end of file