oauth/settings/oauth_settings.py.tmpl
changeset 2 d5c583f9a035
parent 1 5f50937893ac
child 5 4407b131a70e
equal deleted inserted replaced
1:5f50937893ac 2:d5c583f9a035
       
     1 
       
     2 class OAuthSettings(object):
       
     3     
       
     4     # Redirect URIs for GED mock client
       
     5     CLIENT_REDIRECT_URIS = [
       
     6         'http://localhost:8000/authorized',
       
     7         'http://127.0.0.1:8000/authorized',
       
     8         'http://127.0.1:8000/authorized',
       
     9         'http://127.1:8000/authorized',
       
    10     ]
       
    11     # Redirect URIs for Renkan django app
       
    12     RENKAN_REDIRECT_URIS = [
       
    13         '<renkan-base-url>/accounts/mtdc/login/callback/',
       
    14     ]