diff options
author | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-05-04 21:27:16 +0200 |
---|---|---|
committer | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-05-04 21:27:16 +0200 |
commit | 87aa75b968b2cf7cc322c50e83661b3bf3e463ca (patch) | |
tree | 036f6f9a1e23cc1366153eb5539d95b5c439d7a7 /backend/api/api/Interfaces | |
parent | a0679ab22577f37e729b84610918b0fd757b6b17 (diff) |
Omoguceno da se rad gostu sacuva, ako se on registruje pre nego sto izgubi sesiju.
Diffstat (limited to 'backend/api/api/Interfaces')
-rw-r--r-- | backend/api/api/Interfaces/IAuthService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/api/api/Interfaces/IAuthService.cs b/backend/api/api/Interfaces/IAuthService.cs index 9a109208..570ce0a4 100644 --- a/backend/api/api/Interfaces/IAuthService.cs +++ b/backend/api/api/Interfaces/IAuthService.cs @@ -5,7 +5,7 @@ namespace api.Services public interface IAuthService { string Login(AuthRequest user); - string Register(RegisterRequest user); + string Register(RegisterRequest user, string id); string RenewToken(string token); public string GuestToken(); } |