Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-web-client / pithos_web_client / settings.py @ 1b6fcccf

History | View | Annotate | Download (474 Bytes)

1
from django.conf import settings
2

    
3
# !!!!!ATTENTION!!!!!
4
# loginUrl MUST end at "next=". You should not give the value of the next
5
# parameter. It will be determined automatically
6
LOGIN_URL = getattr(settings, 'PITHOS_UI_LOGIN_URL', 'https://accounts.okeanos.grnet.gr/im/login?next=')
7
FEEDBACK_URL = getattr(settings, 'PITHOS_UI_FEEDBACK_URL', 'https://accounts.okeanos.grnet.gr/im/feedback')
8
AUTH_COOKIE_NAME = getattr(settings, 'PITHOS_UI_AUTH_COOKIE_NAME', '_pithos2_a')
9