Add SLO support from federated CAS

This commit is contained in:
Valentin Samir
2016-06-23 17:18:53 +02:00
parent e820a3a57a
commit 6d7300fe43
6 changed files with 143 additions and 23 deletions

View File

@ -184,6 +184,8 @@ def gen_saml_id():
def get_tuple(tuple, index, default=None):
if tuple is None:
return default
try:
return tuple[index]
except IndexError: