Gitlab: how to allow a user to create a project in a group namespace

Some gitlab server users are registered as a developer in this group. I would like these users to be able to create repositories in the group namespace. As currently installed, users do not even have a Namespace field in the Project Path field when creating new projects. Is it possible?

+8
gitlab
source share
3 answers

The first option that you have is to change the namespace yourself after the developer has created the project:

project -> settings/gear icon -> edit project -> transfer project 

The second possible thing is to edit project_security_spec.r b or ability.rb (I am not familiar with this good enough to explain more ...)

+2
source share

You can create an external service that uses the GitLab API to create a project. Using this method, you can also directly initialize a project using README, etc.

0
source share

(I don’t know about the version of GitLab, because this question is very old - but I came here with the same problem - here is the answer for today)

Give users the role of β€œAccompanying” β†’ see: https://gitlab.com/help/user/permissions

0
source share

All Articles