コード例 #1
0
def _GetXsrfKey():
  """Returns the current key for generating and verifying XSRF tokens."""
  client = memcache.Client()
  xsrf_key = client.get('xsrf_key')
  if not xsrf_key:
    config = models.GetApplicationConfiguration()
    xsrf_key = config.xsrf_key
    client.set('xsrf_key', xsrf_key)
  return xsrf_key
コード例 #2
0
ファイル: models_test.py プロジェクト: rkooyenga/tabel
 def testConfigurationAutomaticallyGenerated(self):
     config = models.GetApplicationConfiguration()
     self.assertIsNotNone(config)
     self.assertIsNotNone(config.xsrf_key)