From 82f6a65a89fd1455071dfef6eb8b1e0dbcfd58ff Mon Sep 17 00:00:00 2001 From: Alper Ebicoglu Date: Thu, 2 Apr 2020 13:30:02 +0300 Subject: [PATCH] description max length updated to 1000. --- .../Volo/Blogging/Posts/PostConsts.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo/Blogging/Posts/PostConsts.cs b/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo/Blogging/Posts/PostConsts.cs index 898de49943..c489158704 100644 --- a/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo/Blogging/Posts/PostConsts.cs +++ b/modules/blogging/src/Volo.Blogging.Domain.Shared/Volo/Blogging/Posts/PostConsts.cs @@ -8,7 +8,7 @@ public const int MaxContentLength = 1024 * 1024; //1MB - public const int MaxDescriptionLength = 200; + public const int MaxDescriptionLength = 1000; } }