rucaptcha/app/controllers/ru_captcha/captcha_controller.rb

15 lines
426 B
Ruby
Raw Normal View History

2015-10-26 06:09:39 +00:00
module RuCaptcha
class CaptchaController < ActionController::Base
def index
headers['Cache-Control'] = 'no-cache, no-store, max-age=0, must-revalidate'
headers['Pragma'] = 'no-cache'
if Gem.win_platform?
send_file generate_rucaptcha, disposition: 'inline', type: 'image/png'
else
send_data generate_rucaptcha, disposition: 'inline', type: 'image/png'
end
2015-10-26 06:09:39 +00:00
end
end
end