summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Weihbold <armin.weihbold@gmail.com>2016-09-10 06:39:31 +0200
committerArmin Weihbold <armin.weihbold@gmail.com>2016-09-10 06:39:31 +0200
commit48524627ee8cb0c90c6bc17a9641bcbb5364313e (patch)
treeabe66c286f68fc37535af523f359a40ae160df9e
parentdc3dcd11f3921929cc13260fbfb13aa3ae5117ce (diff)
downloadgitlab-48524627ee8cb0c90c6bc17a9641bcbb5364313e.tar.gz
Add the ability to fork to a specific namespace
-rw-r--r--gitlab/objects.py2
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