Skip to content
Snippets Groups Projects
Commit 2ece1b77 authored by Douglas Barbosa Alexandre's avatar Douglas Barbosa Alexandre
Browse files

Fix creator should be added as a master of the project on creation

parent f6e14431
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -67,6 +67,7 @@ v 8.4.0 (unreleased)
- Improve UX in builds artifacts browser
- Increase default size of `data` column in `events` table when using MySQL
- Expose button to CI Lint tool on project builds page
- Fix: Creator should be added as a master of the project on creation
 
v 8.3.4
- Use gitlab-workhorse 0.5.4 (fixes API routing bug)
Loading
Loading
Loading
Loading
@@ -95,7 +95,7 @@ module Projects
system_hook_service.execute_hooks_for(@project, :create)
 
unless @project.group
@project.team << [current_user, :master, current_user]
@project.team << [current_user, :master]
end
 
@project.import_start if @project.import?
Loading
Loading
Loading
Loading
@@ -32,6 +32,7 @@ describe Projects::CreateService, services: true do
 
it { expect(@project).to be_valid }
it { expect(@project.owner).to eq(@user) }
it { expect(@project.team.masters).to include(@user) }
it { expect(@project.namespace).to eq(@user.namespace) }
end
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment