From 25dff795276349b2baf8da873d9a8514fcc8ef7c Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 11 Dec 2020 16:44:39 -0500 Subject: [PATCH] enable send --- src/Api/Controllers/SendsController.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Api/Controllers/SendsController.cs b/src/Api/Controllers/SendsController.cs index c737500e35..5a188bffd8 100644 --- a/src/Api/Controllers/SendsController.cs +++ b/src/Api/Controllers/SendsController.cs @@ -84,7 +84,6 @@ namespace Bit.Api.Controllers [HttpPost("")] public async Task Post([FromBody] SendRequestModel model) { - throw new NotFoundException(); var userId = _userService.GetProperUserId(User).Value; var send = model.ToSend(userId, _sendService); await _sendService.SaveSendAsync(send); @@ -96,7 +95,6 @@ namespace Bit.Api.Controllers [DisableFormValueModelBinding] public async Task PostFile() { - throw new NotFoundException(); if (!Request?.ContentType.Contains("multipart/") ?? true) { throw new BadRequestException("Invalid content.");