diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-22 00:47:01 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-22 00:47:01 +0000 |
| commit | eb682633945cdd2cfafb3fb082b9c9b6b5e31bba (patch) | |
| tree | 3c3a86ad4b4ba752de0d8df9c7c46daf93f3d43f /python/lasso.py | |
| parent | 59cac1639ee6d771ebe9ffe118e654d2850f0955 (diff) | |
| download | lasso-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.py | 3 |
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) |
