aboutsummaryrefslogtreecommitdiff
path: root/Backend/Api/Api/Interfaces/IJwtService.cs
diff options
context:
space:
mode:
authorbranislav.radivojevic <wafflemynxyt@gmail.com>2022-10-28 15:58:37 +0200
committerbranislav.radivojevic <wafflemynxyt@gmail.com>2022-10-28 15:58:37 +0200
commit174a2de4261dc2f4ea89e20a661a6a69475ed45a (patch)
tree39df185dde9d3d02c0bdd80b7f82c6dc00897162 /Backend/Api/Api/Interfaces/IJwtService.cs
parentd2f98610ddfd63f39c2a2c5b43030bfb4a0ce0a0 (diff)
login and register pw encrypt, return jwt
Diffstat (limited to 'Backend/Api/Api/Interfaces/IJwtService.cs')
-rw-r--r--Backend/Api/Api/Interfaces/IJwtService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Backend/Api/Api/Interfaces/IJwtService.cs b/Backend/Api/Api/Interfaces/IJwtService.cs
index 1a8fb0a..f9e5d5f 100644
--- a/Backend/Api/Api/Interfaces/IJwtService.cs
+++ b/Backend/Api/Api/Interfaces/IJwtService.cs
@@ -6,7 +6,7 @@ namespace Api.Interfaces
{
string GenToken(User user);
string TokenToId(string token);
- public string GenEmailToken(User user);
+ public string GenEmailToken(string username);
public string EmailTokenToId(string token);
}
} \ No newline at end of file