diff options
Diffstat (limited to 'docs/gl_objects/users.py')
| -rw-r--r-- | docs/gl_objects/users.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/gl_objects/users.py b/docs/gl_objects/users.py index c3618b9..da516e6 100644 --- a/docs/gl_objects/users.py +++ b/docs/gl_objects/users.py @@ -97,3 +97,21 @@ email.delete() gl.auth() current_user = gl.user # end currentuser get + +# ca list +attrs = user.customeattributes.list() +# end ca list + +# ca get +attr = user.customeattributes.get(attr_key) +# end ca get + +# ca set +attr = user.customeattributes.set(attr_key, attr_value) +# end ca set + +# ca delete +attr.delete() +# or +user.customeattributes.delete(attr_key) +# end ca delete |
