We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 571a382 commit 349f66eCopy full SHA for 349f66e
gitlab/objects.py
@@ -505,12 +505,13 @@ class User(GitlabObject):
505
requiredCreateAttrs = ['email', 'username', 'name', 'password']
506
optionalCreateAttrs = ['skype', 'linkedin', 'twitter', 'projects_limit',
507
'extern_uid', 'provider', 'bio', 'admin',
508
- 'can_create_group', 'website_url', 'confirm']
+ 'can_create_group', 'website_url', 'confirm',
509
+ 'external']
510
requiredUpdateAttrs = ['email', 'username', 'name']
511
optionalUpdateAttrs = ['password', 'skype', 'linkedin', 'twitter',
512
'projects_limit', 'extern_uid', 'provider', 'bio',
513
'admin', 'can_create_group', 'website_url',
- 'confirm']
514
+ 'confirm', 'external']
515
managers = [('keys', UserKeyManager, [('user_id', 'id')])]
516
517
def _data_for_gitlab(self, extra_parameters={}, update=False):
0 commit comments