summaryrefslogtreecommitdiff
path: root/gitlab
diff options
context:
space:
mode:
authorMax Wittig <max.wittig@siemens.com>2020-03-09 14:47:24 +0100
committerMax Wittig <max.wittig@siemens.com>2020-03-09 14:47:24 +0100
commit666f8806eb6b3455ea5531b08cdfc022916616f0 (patch)
treefb9ff3e22fb5c981db0ef58ee4cbfb3d1d1b9452 /gitlab
parentbe5b15e27ad4a58d61f26e9f5ca3868f72959faa (diff)
downloadgitlab-666f8806eb6b3455ea5531b08cdfc022916616f0.tar.gz
chore(user): update user attributes to 12.8
Diffstat (limited to 'gitlab')
-rw-r--r--gitlab/v4/objects.py4
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}