aboutsummaryrefslogtreecommitdiff
path: root/Backend/Api/Api/Interfaces/IJwtService.cs
diff options
context:
space:
mode:
authorbranislav.radivojevic <wafflemynxyt@gmail.com>2022-10-28 13:27:11 +0200
committerbranislav.radivojevic <wafflemynxyt@gmail.com>2022-10-28 13:27:11 +0200
commit8e18b80aad411299de44a71668833b05c93dc156 (patch)
tree64c8d041d6490eaeedb5f4787393145a87e3ebf0 /Backend/Api/Api/Interfaces/IJwtService.cs
parent5c86c179409063dc39c3111052b2b7fe4d102ae3 (diff)
moved renewtoken to prevent recursive call
Diffstat (limited to 'Backend/Api/Api/Interfaces/IJwtService.cs')
-rw-r--r--Backend/Api/Api/Interfaces/IJwtService.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/Backend/Api/Api/Interfaces/IJwtService.cs b/Backend/Api/Api/Interfaces/IJwtService.cs
index adb83a2..1a8fb0a 100644
--- a/Backend/Api/Api/Interfaces/IJwtService.cs
+++ b/Backend/Api/Api/Interfaces/IJwtService.cs
@@ -6,7 +6,6 @@ namespace Api.Interfaces
{
string GenToken(User user);
string TokenToId(string token);
- Task<string> RenewToken(string existingToken);
public string GenEmailToken(User user);
public string EmailTokenToId(string token);
}