Skip to content
Snippets Groups Projects
Commit 90319e93 authored by Ben Adida's avatar Ben Adida
Browse files

added cas parameters to settings

parent af7f23f0
Branches
Tags
No related merge requests found
......@@ -180,6 +180,12 @@ TWITTER_DM_TOKEN = {"oauth_token": "", "oauth_token_secret": "", "user_id": "",
LINKEDIN_API_KEY = ''
LINKEDIN_API_SECRET = ''
# CAS (for universities)
CAS_USERNAME = get_from_env('CAS_USERNAME', "")
CAS_PASSWORD = get_from_env('CAS_PASSWORD', "")
CAS_ELIGIBILITY_URL = get_from_env('CAS_ELIGIBILITY_URL', "")
CAS_ELIGIBILITY_REALM = get_from_env('CAS_ELIGIBILITY_REALM', "")
# email server
EMAIL_HOST = get_from_env('EMAIL_HOST', 'localhost')
EMAIL_PORT = int(get_from_env('EMAIL_PORT', "2525"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment