oauth/settings/oauth_settings.py.tmpl
changeset 2 d5c583f9a035
parent 1 5f50937893ac
child 5 4407b131a70e
--- a/oauth/settings/oauth_settings.py.tmpl	Tue Feb 16 15:43:00 2016 +0100
+++ b/oauth/settings/oauth_settings.py.tmpl	Tue Feb 16 15:46:00 2016 +0100
@@ -0,0 +1,14 @@
+
+class OAuthSettings(object):
+    
+    # Redirect URIs for GED mock client
+    CLIENT_REDIRECT_URIS = [
+        'http://localhost:8000/authorized',
+        'http://127.0.0.1:8000/authorized',
+        'http://127.0.1:8000/authorized',
+        'http://127.1:8000/authorized',
+    ]
+    # Redirect URIs for Renkan django app
+    RENKAN_REDIRECT_URIS = [
+        '<renkan-base-url>/accounts/mtdc/login/callback/',
+    ]
\ No newline at end of file