combined search css/js/templates are other files into a single structure

This commit is contained in:
Muneeb Ali
2017-04-04 18:34:04 -04:00
parent 9a860d6280
commit f0b81991bd
193 changed files with 0 additions and 77 deletions

10
api/auth/utils.py Normal file
View File

@@ -0,0 +1,10 @@
from binascii import hexlify
from utilitybelt import dev_urandom_entropy
def generate_app_id():
return hexlify(dev_urandom_entropy(16))
def generate_app_secret():
return hexlify(dev_urandom_entropy(32))