diff options
-rw-r--r-- | gitlab/v4/objects.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 13fbb53..f832b71 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -453,6 +453,8 @@ class UserManager(CRUDMixin, RESTManager): "avatar", "public_email", "private_profile", + "color_scheme_id", + "theme_id", ), ) _update_attrs = ( @@ -476,6 +478,8 @@ class UserManager(CRUDMixin, RESTManager): "avatar", "public_email", "private_profile", + "color_scheme_id", + "theme_id", ), ) _types = {"confirm": types.LowercaseStringAttribute, "avatar": types.ImageAttribute} |