Introduced length limits

This commit is contained in:
2019-08-31 16:52:42 +09:00
parent 9338f7bdeb
commit 3ef41b1cdd
21 changed files with 110 additions and 80 deletions

6
arn/limits/limits.go Normal file
View File

@ -0,0 +1,6 @@
package limits
const (
DefaultTextMaxLength = 100
DefaultTextAreaMaxLength = 20000
)