diff options
author | Armin Weihbold <armin.weihbold@gmail.com> | 2016-09-10 06:39:31 +0200 |
---|---|---|
committer | Armin Weihbold <armin.weihbold@gmail.com> | 2016-09-10 06:39:31 +0200 |
commit | 48524627ee8cb0c90c6bc17a9641bcbb5364313e (patch) | |
tree | abe66c286f68fc37535af523f359a40ae160df9e | |
parent | dc3dcd11f3921929cc13260fbfb13aa3ae5117ce (diff) | |
download | gitlab-48524627ee8cb0c90c6bc17a9641bcbb5364313e.tar.gz |
Add the ability to fork to a specific namespace
-rw-r--r-- | gitlab/objects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py index 5a23dbf..4107d6b 100644 --- a/gitlab/objects.py +++ b/gitlab/objects.py @@ -1169,7 +1169,7 @@ class ProjectFork(GitlabObject): canList = False canGet = False requiredUrlAttrs = ['project_id'] - + optionalCreateAttrs = ['namespace'] class ProjectForkManager(BaseManager): obj_cls = ProjectFork |