def show
@image ||= Image.find(params[:id])
send_data(
@image,
:type => @profile.content_type,
:filename => @profile.filename,
:disposition => 'inline'
)
end
Pastie
Support Pastie
or read my
Pastie << self
blog
def show
@image ||= Image.find(params[:id])
send_data(
@image,
:type => @profile.content_type,
:filename => @profile.filename,
:disposition => 'inline'
)
end