aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web')
-rw-r--r--src/DevHive.Web/Controllers/PostController.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DevHive.Web/Controllers/PostController.cs b/src/DevHive.Web/Controllers/PostController.cs
index 0ca041f..fe71519 100644
--- a/src/DevHive.Web/Controllers/PostController.cs
+++ b/src/DevHive.Web/Controllers/PostController.cs
@@ -29,7 +29,7 @@ namespace DevHive.Web.Controllers
[HttpPost]
public async Task<IActionResult> Create(Guid userId, [FromBody] CreatePostWebModel createPostWebModel, [FromHeader] string authorization)
{
- if (await this._postService.ValidateJwtForCreating(userId, authorization))
+ if (!await this._postService.ValidateJwtForCreating(userId, authorization))
return new UnauthorizedResult();
CreatePostServiceModel createPostServiceModel =
@@ -47,7 +47,7 @@ namespace DevHive.Web.Controllers
[Route("Comment")]
public async Task<IActionResult> AddComment(Guid userId, [FromBody] CreateCommentWebModel createCommentWebModel, [FromHeader] string authorization)
{
- if (await this._postService.ValidateJwtForCreating(userId, authorization))
+ if (!await this._postService.ValidateJwtForCreating(userId, authorization))
return new UnauthorizedResult();
CreateCommentServiceModel createCommentServiceModel =