fix: 文章描述长度限制

This commit is contained in:
2025-05-24 14:26:57 +08:00
parent 74d7235cd2
commit 194d16f4f9

View File

@@ -19,7 +19,7 @@ class ArticleValidate extends Validate
'title' => 'require|max:128',
'image' => 'max:125',
'link' => 'max:255',
'desc' => 'max:255',
'desc' => 'max:512',
'sort' => 'integer',
'recommend' => 'require|in:0,1',
'release_time' => 'dateFormat:Y-m-d H:i:s',