We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ae8f78 commit 84750fdCopy full SHA for 84750fd
1 file changed
Backend.Api/Controllers/AuthController.cs
@@ -27,7 +27,7 @@ public AuthController(IAuthAppService service)
27
public async Task<IActionResult> Login([FromBody] AuthRequest req)
28
{
29
var token = await _service.LoginAsync(req.Email, req.Password);
30
- if (token == null) return Unauthorized(new { message = "Invalid credentials" });
+ if (token == null) return Unauthorized(new { message = "Invalid credentials" });
31
return Ok(new { token });
32
}
33
0 commit comments