mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
enable send
This commit is contained in:
parent
70f5fd5030
commit
25dff79527
@ -84,7 +84,6 @@ namespace Bit.Api.Controllers
|
||||
[HttpPost("")]
|
||||
public async Task<SendResponseModel> 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<SendResponseModel> PostFile()
|
||||
{
|
||||
throw new NotFoundException();
|
||||
if (!Request?.ContentType.Contains("multipart/") ?? true)
|
||||
{
|
||||
throw new BadRequestException("Invalid content.");
|
||||
|
Loading…
x
Reference in New Issue
Block a user