Merge branch 'v2' into v3-development

pull/16/head
Dean Karn 10 years ago
commit f1877dbecc
  1. 8
      doc.go

@ -194,10 +194,14 @@ Here is a list of the current built in validators:
parameter given. For strings, it checks that the string length parameter given. For strings, it checks that the string length
is greater than that number of characters. For slices, arrays is greater than that number of characters. For slices, arrays
and maps it validates the number of items. (Usage: gt=10) and maps it validates the number of items. (Usage: gt=10)
For time.Time ensures the time value is greater than time.Now.UTC()
(Usage: gt)
gte gte
Same as 'min' above. Kept both to make terminology with 'len' easier Same as 'min' above. Kept both to make terminology with 'len' easier
(Usage: gte=10) (Usage: gte=10)
For time.Time ensures the time value is greater than or equal to time.Now.UTC()
(Usage: gte)
lt lt
For numbers, this will ensure that the value is For numbers, this will ensure that the value is
@ -205,10 +209,14 @@ Here is a list of the current built in validators:
that the string length is less than that number of characters. that the string length is less than that number of characters.
For slices, arrays, and maps it validates the number of items. For slices, arrays, and maps it validates the number of items.
(Usage: lt=10) (Usage: lt=10)
For time.Time ensures the time value is less than time.Now.UTC()
(Usage: lt)
lte lte
Same as 'max' above. Kept both to make terminology with 'len' easier Same as 'max' above. Kept both to make terminology with 'len' easier
(Usage: lte=10) (Usage: lte=10)
For time.Time ensures the time value is less than or equal to time.Now.UTC()
(Usage: lte)
alpha alpha
This validates that a strings value contains alpha characters only This validates that a strings value contains alpha characters only

Loading…
Cancel
Save