# File lib/generators/active_record/oauth_provider_templates/oauth_nonce.rb, line 8
  def self.remember(nonce, timestamp)
    oauth_nonce = OauthNonce.create(:nonce => nonce, :timestamp => timestamp)
    return false if oauth_nonce.new_record?
    oauth_nonce
  end