diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-13 08:46:31 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-13 08:46:31 +0200 |
| commit | b3fd74a4207334b7b31e9450a078bd10437648c3 (patch) | |
| tree | 4626cf567b9de97f35a64918538685879c4f3813 /src/Web/DevHive.Web | |
| parent | 6cc1bceebfa1ed01472303db226c000c2345b016 (diff) | |
| download | DevHive-b3fd74a4207334b7b31e9450a078bd10437648c3.tar DevHive-b3fd74a4207334b7b31e9450a078bd10437648c3.tar.gz DevHive-b3fd74a4207334b7b31e9450a078bd10437648c3.zip | |
Fixed type in delete rating method name in rating controller
Diffstat (limited to 'src/Web/DevHive.Web')
| -rw-r--r-- | src/Web/DevHive.Web/Controllers/RatingController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Web/DevHive.Web/Controllers/RatingController.cs b/src/Web/DevHive.Web/Controllers/RatingController.cs index f6ab0c5..7d21795 100644 --- a/src/Web/DevHive.Web/Controllers/RatingController.cs +++ b/src/Web/DevHive.Web/Controllers/RatingController.cs @@ -85,7 +85,7 @@ namespace DevHive.Web.Controllers } [HttpDelete] - public async Task<IActionResult> DeleteTating(Guid userId, Guid ratingId, [FromHeader] string authorization) + public async Task<IActionResult> DeleteRating(Guid userId, Guid ratingId, [FromHeader] string authorization) { if (!this._jwtService.ValidateToken(userId, authorization)) return new UnauthorizedResult(); |
