oauth/settings/oauth_settings.py.tmpl
author durandn
Tue, 16 Feb 2016 15:46:00 +0100
changeset 2 d5c583f9a035
parent 1 5f50937893ac
child 5 4407b131a70e
permissions -rw-r--r--
fixed commited oauth settings + edited tmpls and readme


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/',
    ]