summaryrefslogtreecommitdiff
path: root/src/saml2/request.py
diff options
context:
space:
mode:
authorErick Tryzelaar <erickt@cloudera.com>2014-10-29 12:17:35 -0700
committerErick Tryzelaar <erickt@cloudera.com>2014-11-03 14:23:05 -0800
commitfa2e72e19fb647715aa86c801b2018a90f050b40 (patch)
tree5f12d6dd80d6ca4fe626c0bccaa7259619e6853b /src/saml2/request.py
parent40907a72bd51535f542c7b5ef45d966bbfc5fdfa (diff)
downloadpysaml2-fa2e72e19fb647715aa86c801b2018a90f050b40.tar.gz
expose LogoutRequest.issuer property to fix logging out with redirect
Diffstat (limited to 'src/saml2/request.py')
-rw-r--r--src/saml2/request.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/saml2/request.py b/src/saml2/request.py
index 3497db18..17f3edf3 100644
--- a/src/saml2/request.py
+++ b/src/saml2/request.py
@@ -127,6 +127,10 @@ class LogoutRequest(Request):
attribute_converters, timeslack)
self.signature_check = self.sec.correctly_signed_logout_request
+ @property
+ def issuer(self):
+ return self.message.issuer
+
class AttributeQuery(Request):
msgtype = "attribute_query"