refactor: add error handling in AuthenticationResponse
This commit is contained in:
parent
13dfc0e886
commit
c3a943f02e
@ -24,7 +24,7 @@ public class AuthenticationController : ControllerBase
|
|||||||
|
|
||||||
if (!success)
|
if (!success)
|
||||||
{
|
{
|
||||||
return BadRequest(content);
|
return BadRequest(new AuthenticationResponse {IsError = true, ErrorMessage = content} );
|
||||||
}
|
}
|
||||||
|
|
||||||
return await Login(request);
|
return await Login(request);
|
||||||
@ -38,7 +38,7 @@ public class AuthenticationController : ControllerBase
|
|||||||
|
|
||||||
if (!success)
|
if (!success)
|
||||||
{
|
{
|
||||||
return BadRequest("Username or password is incorrect.");
|
return BadRequest(new AuthenticationResponse {IsError = true, ErrorMessage = "Username or password is incorrect."});
|
||||||
}
|
}
|
||||||
|
|
||||||
return Ok(new AuthenticationResponse { Token = content } );
|
return Ok(new AuthenticationResponse { Token = content } );
|
||||||
|
@ -2,5 +2,8 @@ namespace DatabaseModels.Responses;
|
|||||||
|
|
||||||
public class AuthenticationResponse
|
public class AuthenticationResponse
|
||||||
{
|
{
|
||||||
|
public bool IsError { get; set; }
|
||||||
|
public string ErrorMessage { get; set; } = null!;
|
||||||
|
|
||||||
public string Token { get; set; } = null!;
|
public string Token { get; set; } = null!;
|
||||||
}
|
}
|
@ -8,7 +8,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
||||||
<Exec Command="cp ./bin/Release/net6.0/SharedModels.dll /home/danil/Unity/Projects/untiteled-mobile-game/Assets/Imported\ Assets/Plugins/SharedModels.dll" />
|
<Exec Command="cp ./bin/Release/net6.0/SharedModels.dll /home/danil/Unity/Projects/untiteled-mobile-game/Assets/Imported\ Assets/SharedModels.dll" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
Loading…
Reference in New Issue
Block a user