File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 30
30
from gitlab import utils # noqa
31
31
32
32
__title__ = "python-gitlab"
33
- __version__ = "2.0.0 "
33
+ __version__ = "2.0.1 "
34
34
__author__ = "Gauvain Pocentek"
35
35
__email__ = "gauvainpocentek@gmail.com"
36
36
__license__ = "LGPL3"
Original file line number Diff line number Diff line change @@ -414,6 +414,7 @@ class UserManager(CRUDMixin, RESTManager):
414
414
"search" ,
415
415
"custom_attributes" ,
416
416
"status" ,
417
+ "two_factor" ,
417
418
)
418
419
_create_attrs = (
419
420
tuple (),
@@ -438,6 +439,8 @@ class UserManager(CRUDMixin, RESTManager):
438
439
"organization" ,
439
440
"location" ,
440
441
"avatar" ,
442
+ "public_email" ,
443
+ "private_profile" ,
441
444
),
442
445
)
443
446
_update_attrs = (
@@ -459,6 +462,8 @@ class UserManager(CRUDMixin, RESTManager):
459
462
"organization" ,
460
463
"location" ,
461
464
"avatar" ,
465
+ "public_email" ,
466
+ "private_profile" ,
462
467
),
463
468
)
464
469
_types = {"confirm" : types .LowercaseStringAttribute , "avatar" : types .ImageAttribute }
You can’t perform that action at this time.
0 commit comments