From 5a9923092a7f007b16f732bd679cbd6b07c6fd72 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 19 Feb 2018 08:20:46 -0500 Subject: [PATCH] RequestSizeLimit for attachment uploads --- src/Api/Controllers/CiphersController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Api/Controllers/CiphersController.cs b/src/Api/Controllers/CiphersController.cs index a0d8c267ee..afe2a0f15a 100644 --- a/src/Api/Controllers/CiphersController.cs +++ b/src/Api/Controllers/CiphersController.cs @@ -415,6 +415,7 @@ namespace Bit.Api.Controllers } [HttpPost("{id}/attachment/{attachmentId}/share")] + [RequestSizeLimit(105_906_176)] [DisableFormValueModelBinding] public async Task PostAttachmentShare(string id, string attachmentId, Guid organizationId) {