I have a post model and a podcast model. Both models have an attribute titled: image. I'm using one Carrierwave uploader (named ImageUploader) to handle both models. I have two questions before I go into production.
Dumb question:
Is it ok to use the same uploader for two different models when they both have the same attribute name for their file attachements? sorry if it seems obvious
Main question:
I want to create three versions of each blog post image (thumb, large, sepia) and only 1 version of each podcast image (thumb).
Do I need to use two uploaders now or can I namespace with the one that I'm already using?
Again it probably seems obvious. I could probably have written the second uploader in the time its taken me to ask these questions