I have a model with:
has_and_belongs_to_many :users
How do I validate that the model has at least one user in the model? I tried:
validates_presence_of :users
But that doesn't seem to give me what I want...
|
I have a model with:
How do I validate that the model has at least one user in the model? I tried:
But that doesn't seem to give me what I want... |
|||
|
|
|
I would write custom validation:
That would do exactly that. |
|||||||
|
|
Josh Susser wrote a plugin that adds a |
|||||
|
|
In Rails 3.2.x:
|
|||
|
|