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