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
I found myself needing to remove the count validation from a rule. I attempted to do this by calling:
rule.count(nil)
However, this does not remove the count validation. Instead it sets the count value to nil. If I then try to call a method like occurrences_between after doing this, I get an exception (because count is nil).
Is there a better way to remove a count validation from a rule?
The text was updated successfully, but these errors were encountered:
I found myself needing to remove the count validation from a rule. I attempted to do this by calling:
rule.count(nil)
However, this does not remove the count validation. Instead it sets the count value to nil. If I then try to call a method like occurrences_between after doing this, I get an exception (because count is nil).
Is there a better way to remove a count validation from a rule?
The text was updated successfully, but these errors were encountered: