Fixed jwt validation error. Added node allocations editor. Small fixes

This commit is contained in:
Marcel Baumgartner
2024-02-07 21:08:37 +01:00
parent 70445069fd
commit 1b427607d1
11 changed files with 235 additions and 19 deletions

View File

@@ -75,7 +75,7 @@ public class IdentityService
if (string.IsNullOrEmpty(Token))
return;
if (!await JwtService.Validate(Token))
if (!await JwtService.Validate(Token, "User"))
return;
var data = await JwtService.Decode(Token);