fix: quality of life improvements
This commit is contained in:
parent
323cd176b7
commit
13dfc0e886
@ -5,7 +5,7 @@ using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Server.Controllers;
|
||||
|
||||
[Route("auth")]
|
||||
[Route("api/auth")]
|
||||
[ApiController]
|
||||
public class AuthenticationController : ControllerBase
|
||||
{
|
||||
|
@ -62,8 +62,8 @@ public class AuthenticationService
|
||||
private ClaimsIdentity AssembleClaimsIdentity(User user)
|
||||
{
|
||||
var subject = new ClaimsIdentity(new[] {
|
||||
new Claim("Id", user.Id.ToString()),
|
||||
new Claim("Username", user.Username),
|
||||
new Claim("id", user.Id.ToString()),
|
||||
new Claim("username", user.Username),
|
||||
new Claim(ClaimTypes.Role, user.Role)
|
||||
});
|
||||
|
||||
|
@ -55,7 +55,7 @@ public class ScoreboardService
|
||||
|
||||
public async Task<(bool success, string content)> AddUserHighScore(ScoreboardRecordDto sbRecordDto)
|
||||
{
|
||||
if (sbRecordDto.User.Id != Int32.Parse(_httpContextAccessor.HttpContext!.User.Claims.First(c => c.Type == "Id").Value))
|
||||
if (sbRecordDto.User.Id != Int32.Parse(_httpContextAccessor.HttpContext!.User.Claims.First(c => c.Type == "id").Value))
|
||||
{
|
||||
return (false, "User id is not yours");
|
||||
}
|
||||
|
@ -7,4 +7,8 @@
|
||||
<RootNamespace>DatabaseModels</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
<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" />
|
||||
</Target>
|
||||
|
||||
</Project>
|
||||
|
Loading…
Reference in New Issue
Block a user