Skip to content

Commit

Permalink
Added a new project attribute to enable the container registry.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrwen-omicron committed Jul 25, 2016
1 parent 580f21e commit d61510e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions gitlab/objects.py
Expand Up @@ -1627,12 +1627,14 @@ class Project(GitlabObject):
requiredCreateAttrs = ['name']
optionalCreateAttrs = ['default_branch', 'issues_enabled', 'wall_enabled',
'merge_requests_enabled', 'wiki_enabled',
'snippets_enabled', 'public', 'visibility_level',
'namespace_id', 'description', 'path', 'import_url',
'snippets_enabled', 'container_registry_enabled',
'public', 'visibility_level', 'namespace_id',
'description', 'path', 'import_url',
'builds_enabled', 'public_builds']
optionalUpdateAttrs = ['name', 'default_branch', 'issues_enabled',
'wall_enabled', 'merge_requests_enabled',
'wiki_enabled', 'snippets_enabled', 'public',
'wiki_enabled', 'snippets_enabled',
'container_registry_enabled', 'public',
'visibility_level', 'namespace_id', 'description',
'path', 'import_url', 'builds_enabled',
'public_builds']
Expand Down

0 comments on commit d61510e

Please sign in to comment.