diff --git a/Server/Controllers/AuthenticationController.cs b/Server/Controllers/AuthenticationController.cs
index 939c826..9e676af 100644
--- a/Server/Controllers/AuthenticationController.cs
+++ b/Server/Controllers/AuthenticationController.cs
@@ -5,7 +5,7 @@ using Microsoft.AspNetCore.Mvc;
namespace Server.Controllers;
-[Route("auth")]
+[Route("api/auth")]
[ApiController]
public class AuthenticationController : ControllerBase
{
diff --git a/Server/Services/AuthenticationService.cs b/Server/Services/AuthenticationService.cs
index c1c9109..5f4b5ed 100644
--- a/Server/Services/AuthenticationService.cs
+++ b/Server/Services/AuthenticationService.cs
@@ -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)
});
diff --git a/Server/Services/ScoreboardService.cs b/Server/Services/ScoreboardService.cs
index ded34ad..876775b 100644
--- a/Server/Services/ScoreboardService.cs
+++ b/Server/Services/ScoreboardService.cs
@@ -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");
}
diff --git a/SharedModels/SharedModels.csproj b/SharedModels/SharedModels.csproj
index b58b14e..c58f151 100644
--- a/SharedModels/SharedModels.csproj
+++ b/SharedModels/SharedModels.csproj
@@ -7,4 +7,8 @@
DatabaseModels
+
+
+
+