mirror of
https://github.com/ansible/awx.git
synced 2026-01-22 23:18:03 -03:30
7 lines
123 B
Python
7 lines
123 B
Python
import base64
|
|
import os
|
|
|
|
|
|
def csp(request):
|
|
return {'csp_nonce': base64.encodebytes(os.urandom(32)).decode().rstrip()}
|