diff options
| author | transtrike <transtrike@gmail.com> | 2021-01-21 19:21:46 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2021-01-21 19:21:46 +0200 |
| commit | f8f3727319a03eb9dd9a2ed8546810beb732cdab (patch) | |
| tree | 12bdc4b9262e3d8611a792525bdf793594a078f2 /src/DevHive.Services/Interfaces | |
| parent | 9e86699c9b3aff17e0c4d19850b41b792a9625ef (diff) | |
| download | DevHive-f8f3727319a03eb9dd9a2ed8546810beb732cdab.tar DevHive-f8f3727319a03eb9dd9a2ed8546810beb732cdab.tar.gz DevHive-f8f3727319a03eb9dd9a2ed8546810beb732cdab.zip | |
Cleaning of UserRepo&UserService of unused methods
Diffstat (limited to 'src/DevHive.Services/Interfaces')
| -rw-r--r-- | src/DevHive.Services/Interfaces/IUserService.cs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/DevHive.Services/Interfaces/IUserService.cs b/src/DevHive.Services/Interfaces/IUserService.cs index 923e9bb..51e3cf9 100644 --- a/src/DevHive.Services/Interfaces/IUserService.cs +++ b/src/DevHive.Services/Interfaces/IUserService.cs @@ -1,8 +1,6 @@ using System; -using System.Collections.Generic; using System.Threading.Tasks; using DevHive.Common.Models.Identity; -using DevHive.Common.Models.Misc; using DevHive.Services.Models.Identity.User; namespace DevHive.Services.Interfaces @@ -12,15 +10,12 @@ namespace DevHive.Services.Interfaces Task<TokenModel> LoginUser(LoginServiceModel loginModel); Task<TokenModel> RegisterUser(RegisterServiceModel registerModel); - Task<bool> AddFriend(Guid userId, Guid friendId); - Task<UserServiceModel> GetUserByUsername(string username); Task<UserServiceModel> GetUserById(Guid id); Task<UserServiceModel> UpdateUser(UpdateUserServiceModel updateModel); Task DeleteUser(Guid id); - Task<bool> RemoveFriend(Guid userId, Guid friendId); Task<bool> ValidJWT(Guid id, string rawTokenData); } |
