diff options
Diffstat (limited to 'python/lasso.py')
| -rw-r--r-- | python/lasso.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/python/lasso.py b/python/lasso.py index 855ba163..135e3a0a 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -871,14 +871,17 @@ class User: def destroy(self): lassomod.user_destroy(self) - def get_assertion(self, providerID): - return Node(lassomod.user_get_assertion(self, providerID)) + def get_assertion(self, remote_providerID): + return Node(lassomod.user_get_assertion(self, remote_providerID)) + + def get_authentication_method(self, remote_providerID): + return lassomod.user_get_authentication_method(self, remote_providerID) def get_next_assertion_remote_providerID(self): return lassomod.user_get_next_assertion_remote_providerID(self) - def remove_assertion(self, providerID): - lassomod.user_remove_assertion(self, providerID) + def remove_assertion(self, remote_providerID): + lassomod.user_remove_assertion(self, remote_providerID) loginProtocolProfileBrwsArt = 1 loginProtocolProfileBrwsPost = 2 |
