We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6e7d749 + f713f59 commit 0e1cc12Copy full SHA for 0e1cc12
1 file changed
Backend.Api/Controllers/AuthController.cs
@@ -20,7 +20,7 @@ public class AuthController(IAuthAppService service) : ControllerBase
20
public async Task<IActionResult> Login([FromBody] AuthRequest req)
21
{
22
var token = await service.LoginAsync(req.Email, req.Password);
23
- if (token == null) return Unauthorized(new { message = "Invalid credentials" });
+ if (token == null) return Unauthorized(new { message = "Invalid credentials" });
24
return Ok(new { token });
25
}
26
0 commit comments