Class: ThumbsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- ThumbsController
- Defined in:
- app/controllers/thumbs_controller.rb
Instance Method Summary collapse
Instance Method Details
#deliver_crop ⇒ Object
3 4 5 6 7 8 9 10 |
# File 'app/controllers/thumbs_controller.rb', line 3 def deliver_crop klass, format, id = parse_params @obj = klass.find(id) @obj.create_thumb_for(format) send_file(@obj.thumb_path_for(format), :type => 'image/jpeg', :disposition => 'inline') end |