From e4331fe503547df8f17095540cbd4170bbaf2b25 Mon Sep 17 00:00:00 2001 From: transtrike Date: Sun, 28 Feb 2021 10:31:37 +0200 Subject: JWT Working like a charm --- src/Common/DevHive.Common/Jwt/Interfaces/IJwtService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Common/DevHive.Common/Jwt/Interfaces/IJwtService.cs') diff --git a/src/Common/DevHive.Common/Jwt/Interfaces/IJwtService.cs b/src/Common/DevHive.Common/Jwt/Interfaces/IJwtService.cs index d2f1756..6f844f5 100644 --- a/src/Common/DevHive.Common/Jwt/Interfaces/IJwtService.cs +++ b/src/Common/DevHive.Common/Jwt/Interfaces/IJwtService.cs @@ -6,6 +6,6 @@ namespace DevHive.Common.Jwt.Interfaces public interface IJwtService { string GenerateJwtToken(Guid userId, string username, List roleNames); - bool ValidateToken(string authToken); + bool ValidateToken(Guid userId, string rawToken); } } -- cgit v1.2.3