Class: ThumbsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/thumbs_controller.rb

Instance Method Summary collapse

Instance Method Details

#deliver_cropObject



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