diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/environs/py_user.c | 2 | ||||
| -rw-r--r-- | python/lasso.py | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/python/environs/py_user.c b/python/environs/py_user.c index 0e51153b..5de637a9 100644 --- a/python/environs/py_user.c +++ b/python/environs/py_user.c @@ -25,6 +25,8 @@ #include "../lassomod.h" +#include "../xml/py_xml.h" + #include "py_user.h" PyObject *LassoUser_wrap(LassoUser *user) { diff --git a/python/lasso.py b/python/lasso.py index 5d886bd1..359f1a49 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -860,14 +860,14 @@ class User: def destroy(self): lassomod.user_destroy(self) - def get_assertion(self): - pass + def get_assertion(self, providerID): + return Node(lassomod.user_get_assertion(self, providerID)) def get_next_providerID(self): return lassomod.user_get_next_providerID(self) def remove_assertion(self, providerID): - return lassomod.user_remove_assertion(self, providerID) + lassomod.user_remove_assertion(self, providerID) loginProtocolProfileBrwsArt = 1 loginProtocolProfileBrwsPost = 2 |
