aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Interfaces/IUserService.cs
diff options
context:
space:
mode:
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
+}