I'm using Paperclip in a rails 3.2 application with an asset polymorphic model.
All my files are stored with Amazon S3.
I'm using the following path in my paperclip_defaults.rb initializer
path: ":class/:attachment/:hash/:filename",
is there a way to add assetable_id here, because all my files are stored in the same folder and it's not very convenient.
I've tried to override the path in my Asset model
path: ":class/:attachment/:assetable_type/:hash/:filename",
But this just creates a folder name ":assetable_type" in my S3 bucket.