File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 3030from gitlab import utils # noqa
3131
3232__title__ = "python-gitlab"
33- __version__ = "2.0.0 "
33+ __version__ = "2.0.1 "
3434__author__ = "Gauvain Pocentek"
3535__email__ = "gauvainpocentek@gmail.com"
3636__license__ = "LGPL3"
Original file line number Diff line number Diff line change @@ -414,6 +414,7 @@ class UserManager(CRUDMixin, RESTManager):
414414 "search" ,
415415 "custom_attributes" ,
416416 "status" ,
417+ "two_factor" ,
417418 )
418419 _create_attrs = (
419420 tuple (),
@@ -438,6 +439,8 @@ class UserManager(CRUDMixin, RESTManager):
438439 "organization" ,
439440 "location" ,
440441 "avatar" ,
442+ "public_email" ,
443+ "private_profile" ,
441444 ),
442445 )
443446 _update_attrs = (
@@ -459,6 +462,8 @@ class UserManager(CRUDMixin, RESTManager):
459462 "organization" ,
460463 "location" ,
461464 "avatar" ,
465+ "public_email" ,
466+ "private_profile" ,
462467 ),
463468 )
464469 _types = {"confirm" : types .LowercaseStringAttribute , "avatar" : types .ImageAttribute }
You can’t perform that action at this time.
0 commit comments