I have a Rails 3.2 application using Paperclip to attach mutliple images in one fied.
So, I have a Post model and a Image model.
My question is: How to validate the number of image like the size validation of Paperclip?
Thanks!
I have a Rails 3.2 application using Paperclip to attach mutliple images in one fied.
So, I have a Post model and a Image model.
My question is: How to validate the number of image like the size validation of Paperclip?
Thanks!
Copyright © 2021 Jogjafile Inc.
S0 I am assuming that one Post has_many Images.
You could try validating the number of images on save, something like the following (this code has not been tested!):