Method: SimpleCaptcha::SimpleCaptchaData.remove_data

Defined in:
lib/simple_captcha/simple_captcha_data.rb,
lib/simple_captcha/simple_captcha_data_mongoid.rb

.remove_data(key) ⇒ Object



22
23
24
25
# File 'lib/simple_captcha/simple_captcha_data.rb', line 22

def remove_data(key)
  delete_all(["#{connection.quote_column_name(:key)} = ?", key])
  clear_old_data(1.hour.ago)
end