search for: after_attachment_sav

Displaying 2 results from an estimated 2 matches for "after_attachment_sav".

Did you mean: after_attachment_saved
2008 Sep 15
1
[attachment_fu] Allways triggering after_attachment_saved callback
Hi, I use attachment_fu in one of my apps and recently I''ve realized that udpates are taking too much time. After some debugging I''ve found that attachment_fu is calling after_attachment_saved callback no mather if attachemnt has changed or not. For example this code: after_attachment_saved do |photo| logger.info "after_attachment_saved" end # in console - always logging "after_attachment_saved" to logs # no mather if attachment changed or not Photo.find(1).sav...
2009 Jul 24
1
Attachment_fu - watermark tmp file before saved to S3
Hi there, I''d like to use RMagick to watermark an image in the tmp directory before Attachment_fu saves it to Amazon S3. I took a look at the callbacks available in attachment_fu. There''s an ''after_attachment_saved'' method but this would be too late, and a ''before_thumbnail_saved'' but this is no good because it''s for thumbnails. I think I need ''before_attachment_saved'' or the equivalent in the attachment workflow. I do have a watermark working for :fil...