diff options
Diffstat (limited to 'src/Common/DevHive.Common/Jwt/Interfaces/IJwtService.cs')
| -rw-r--r-- | src/Common/DevHive.Common/Jwt/Interfaces/IJwtService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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<string> roleNames); - bool ValidateToken(string authToken); + bool ValidateToken(Guid userId, string rawToken); } } |
