You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 9, 2026. It is now read-only.
Would be nice to use something like this:
DBValidationStringLengthRule *stringLengthRule = [[DBValidationStringLengthRule alloc] initWithObject:_password keyPath:@"text" minStringLength:1 maxStringLength:50 failureMessage:@"Please provide password between %i %i"];
[_password addValidationRule:stringLengthRule];
Where you will replace min and max
Please provide password between %i %i"
Thanks