From faf909479eb9a3abda174dfccbdb256645991ca3 Mon Sep 17 00:00:00 2001 From: Chad Scharf <3904944+cscharf@users.noreply.github.com> Date: Wed, 18 Nov 2020 12:43:58 -0500 Subject: [PATCH] re-enable send (#1004) --- src/Api/Controllers/SendsController.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Api/Controllers/SendsController.cs b/src/Api/Controllers/SendsController.cs index a310413d1e..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);