1
2
3
4
5
6
7
8
9
def show
  @image ||= Image.find(params[:id])
  send_data(
        @image, 
        :type => @profile.content_type,
        :filename => @profile.filename,
        :disposition => 'inline'
      )
end