aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/settings.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2023-12-05 16:47:46 +0300
committerFrederick Muriuki Muriithi2023-12-05 16:48:48 +0300
commitd59c3c49b2fcb60550be68f241f2526895512e94 (patch)
tree0de23e15b8b9a66ab78d4fd394603f9ef54112dd /gn_auth/settings.py
parentd2ad3b1abffdeeb52e1b5f5a303a381aa3dd477c (diff)
downloadgn-auth-d59c3c49b2fcb60550be68f241f2526895512e94.tar.gz
Enable CORS to allow access from GN2 javascript
Diffstat (limited to 'gn_auth/settings.py')
-rw-r--r--gn_auth/settings.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/gn_auth/settings.py b/gn_auth/settings.py
index e8611bf..394c557 100644
--- a/gn_auth/settings.py
+++ b/gn_auth/settings.py
@@ -19,3 +19,10 @@ REDIS_URI = "redis://localhost:6379/0"
OAUTH2_SCOPE = (
"profile", "group", "role", "resource", "user", "masquerade",
"introspect")
+
+CORS_ORIGINS = "*"
+CORS_HEADERS = [
+ "Content-Type",
+ "Authorization",
+ "Access-Control-Allow-Credentials"
+]