From 666f8806eb6b3455ea5531b08cdfc022916616f0 Mon Sep 17 00:00:00 2001 From: Max Wittig Date: Mon, 9 Mar 2020 14:47:24 +0100 Subject: [PATCH] chore(user): update user attributes to 12.8 --- gitlab/v4/objects.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 13fbb53fa..f832b7112 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}