summaryrefslogtreecommitdiffstats
path: root/python/lasso.py
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-07-22 00:47:01 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-07-22 00:47:01 +0000
commiteb682633945cdd2cfafb3fb082b9c9b6b5e31bba (patch)
tree3c3a86ad4b4ba752de0d8df9c7c46daf93f3d43f /python/lasso.py
parent59cac1639ee6d771ebe9ffe118e654d2850f0955 (diff)
downloadlasso-eb682633945cdd2cfafb3fb082b9c9b6b5e31bba.tar.gz
lasso-eb682633945cdd2cfafb3fb082b9c9b6b5e31bba.tar.xz
lasso-eb682633945cdd2cfafb3fb082b9c9b6b5e31bba.zip
Added method set_consent in LibAuthnRequest class
Diffstat (limited to 'python/lasso.py')
-rw-r--r--python/lasso.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/lasso.py b/python/lasso.py
index 43fb3a29..8b2a238e 100644
--- a/python/lasso.py
+++ b/python/lasso.py
@@ -290,6 +290,9 @@ class LibAuthnRequest(Node):
if _obj is None: raise Error('lasso_lib_authn_request_new() failed')
Node.__init__(self, _obj=_obj)
+ def set_consent(self, consent):
+ lassomod.lib_authn_request_set_consent(self, consent)
+
def set_forceAuthn(self, forceAuthn):
lassomod.lib_authn_request_set_forceAuthn(self, forceAuthn)