fix: quality of life improvements

This commit is contained in:
cuqmbr 2022-07-29 17:11:57 +03:00
parent 323cd176b7
commit 13dfc0e886
4 changed files with 8 additions and 4 deletions

View File

@ -5,7 +5,7 @@ using Microsoft.AspNetCore.Mvc;
namespace Server.Controllers;
[Route("auth")]
[Route("api/auth")]
[ApiController]
public class AuthenticationController : ControllerBase
{

View File

@ -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)
});

View File

@ -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");
}

View File

@ -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>