From eb682633945cdd2cfafb3fb082b9c9b6b5e31bba Mon Sep 17 00:00:00 2001 From: Valery Febvre Date: Thu, 22 Jul 2004 00:47:01 +0000 Subject: Added method set_consent in LibAuthnRequest class --- python/lasso.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python/lasso.py') 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) -- cgit