Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improved: required methods now use check func #2

Merged
merged 2 commits into from
Mar 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions required.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,14 @@ const (

// RequiredString checks if a string value is empty or not.
func (v *Validator) RequiredString(value, field string, msg string) *Validator {
if strings.TrimSpace(value) == "" {
v.addError(field, v.msg(Required, field, msg))
}
v.Check(strings.TrimSpace(value) != "", field, v.msg(Required, field, msg))

return v
}

// RequiredInt checks if a integer value is provided or not.
// RequiredInt checks if an integer value is provided or not.
func (v *Validator) RequiredInt(value int, field string, msg string) *Validator {
if value == 0 {
v.addError(field, v.msg(Required, field, msg))
}
v.Check(value == 0, field, v.msg(Required, field, msg))

return v
}
Loading