From 2127e9d1f41ff45ce9d011991f0878e4031a8b18 Mon Sep 17 00:00:00 2001 From: "Hafizh A. Y" Date: Wed, 28 Jan 2026 11:21:47 +0700 Subject: [PATCH] fix(BE): limit path to 255 --- internal/common/service/common.document.service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/common/service/common.document.service.go b/internal/common/service/common.document.service.go index a57aaa85..ed9499d4 100644 --- a/internal/common/service/common.document.service.go +++ b/internal/common/service/common.document.service.go @@ -20,7 +20,7 @@ import ( ) const ( - defaultDocumentPathLimit = 50 + defaultDocumentPathLimit = 255 defaultDocumentKeyPrefix = "docs" maxDocumentNameLength = 50 )