aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Interfaces/IUserService.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-01-14 00:12:48 +0200
committertranstrike <transtrike@gmail.com>2021-01-14 00:12:48 +0200
commit2948a92492141f4d807449191901f499530d8465 (patch)
tree36d30886af22351d86d937f03558c501254ad621 /src/DevHive.Services/Interfaces/IUserService.cs
parentd77add41838823ad50caf8d1ae5ee8e61c1bb26b (diff)
downloadDevHive-2948a92492141f4d807449191901f499530d8465.tar
DevHive-2948a92492141f4d807449191901f499530d8465.tar.gz
DevHive-2948a92492141f4d807449191901f499530d8465.zip
Fixed issues in Language & Technology and their interactions with User
Diffstat (limited to 'src/DevHive.Services/Interfaces/IUserService.cs')
-rw-r--r--src/DevHive.Services/Interfaces/IUserService.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DevHive.Services/Interfaces/IUserService.cs b/src/DevHive.Services/Interfaces/IUserService.cs
index ba53563..5ef141f 100644
--- a/src/DevHive.Services/Interfaces/IUserService.cs
+++ b/src/DevHive.Services/Interfaces/IUserService.cs
@@ -20,12 +20,12 @@ namespace DevHive.Services.Interfaces
Task<UserServiceModel> GetUserById(Guid id);
Task<UserServiceModel> UpdateUser(UpdateUserServiceModel updateModel);
-
+
Task DeleteUser(Guid id);
Task<bool> RemoveFriend(Guid userId, Guid friendId);
Task<bool> RemoveLanguageFromUser(Guid userId, LanguageServiceModel languageServiceModel);
Task<bool> RemoveTechnologyFromUser(Guid userId, TechnologyServiceModel technologyServiceModel);
-
+
Task<bool> ValidJWT(Guid id, string rawTokenData);
}
-} \ No newline at end of file
+}