diff options
author | Max Wittig <max.wittig@siemens.com> | 2020-03-09 14:47:24 +0100 |
---|---|---|
committer | Max Wittig <max.wittig@siemens.com> | 2020-03-09 14:47:24 +0100 |
commit | 666f8806eb6b3455ea5531b08cdfc022916616f0 (patch) | |
tree | fb9ff3e22fb5c981db0ef58ee4cbfb3d1d1b9452 /gitlab | |
parent | be5b15e27ad4a58d61f26e9f5ca3868f72959faa (diff) | |
download | gitlab-666f8806eb6b3455ea5531b08cdfc022916616f0.tar.gz |
chore(user): update user attributes to 12.8
Diffstat (limited to 'gitlab')
-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} |