aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Services/Interfaces')
-rw-r--r--src/DevHive.Services/Interfaces/IPostService.cs6
-rw-r--r--src/DevHive.Services/Interfaces/IRoleService.cs4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/DevHive.Services/Interfaces/IPostService.cs b/src/DevHive.Services/Interfaces/IPostService.cs
index 9cb21ed..dd886b4 100644
--- a/src/DevHive.Services/Interfaces/IPostService.cs
+++ b/src/DevHive.Services/Interfaces/IPostService.cs
@@ -15,10 +15,10 @@ namespace DevHive.Services.Interfaces
Task<bool> UpdateComment(UpdateCommentServiceModel commentServiceModel);
Task<bool> UpdatePost(UpdatePostServiceModel postServiceModel);
-
+
Task<bool> DeleteComment(Guid id);
Task<bool> DeletePost(Guid id);
-
+
Task<bool> ValidateJwtForComment(Guid commentId, string rawTokenData);
}
-} \ No newline at end of file
+}
diff --git a/src/DevHive.Services/Interfaces/IRoleService.cs b/src/DevHive.Services/Interfaces/IRoleService.cs
index 3bf236c..2c7195c 100644
--- a/src/DevHive.Services/Interfaces/IRoleService.cs
+++ b/src/DevHive.Services/Interfaces/IRoleService.cs
@@ -11,7 +11,7 @@ namespace DevHive.Services.Interfaces
Task<RoleModel> GetRoleById(Guid id);
Task<bool> UpdateRole(RoleModel roleServiceModel);
-
+
Task<bool> DeleteRole(Guid id);
}
-} \ No newline at end of file
+}