Changeset ff202cf for iknow-api/Services/Interfaces/IAuthService.cs
- Timestamp:
- 10/28/25 10:51:32 (11 months ago)
- Branches:
- master
- Children:
- 4708118
- Parents:
- b38c39c (diff), c2e73b6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- Boris Gjorgjievski <69085722+imbrsk@…> (10/28/25 10:51:32)
- git-committer:
- GitHub <noreply@…> (10/28/25 10:51:32)
- File:
-
- 1 edited
-
iknow-api/Services/Interfaces/IAuthService.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
iknow-api/Services/Interfaces/IAuthService.cs
rb38c39c rff202cf 1 1 using iknow_api.DTOs; 2 2 using iknow_api.DTOs; 3 3 namespace iknow_api.Services 4 4 { … … 6 6 { 7 7 Task<bool> RegisterAsync(RegisterDto registerDto); 8 Task< string?> LoginAsync(LoginDto loginDto);8 Task<AuthResultDto?> LoginAsync(LoginDto loginDto); 9 9 Task<int> GetUsersCountAsync(); 10 Task<AuthResultDto> GenerateNewJWT(VerifyRefreshTokenDto token); 10 11 } 11 12 }
Note:
See TracChangeset
for help on using the changeset viewer.
