aboutsummaryrefslogtreecommitdiff
path: root/src/Common/DevHive.Common/Jwt/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/DevHive.Common/Jwt/Interfaces')
-rw-r--r--src/Common/DevHive.Common/Jwt/Interfaces/IJwtService.cs2
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);
}
}