Commit 7a14ae1f authored by Igor Drozdov's avatar Igor Drozdov

Fix warnings for overwrite_project_service

parent 104512a8
......@@ -32,12 +32,12 @@ module Projects
def move_before_destroy_relationships(source_project)
options = { remove_remaining_elements: false }
::Projects::MoveUsersStarProjectsService.new(@project, @current_user).execute(source_project, options)
::Projects::MoveAccessService.new(@project, @current_user).execute(source_project, options)
::Projects::MoveDeployKeysProjectsService.new(@project, @current_user).execute(source_project, options)
::Projects::MoveNotificationSettingsService.new(@project, @current_user).execute(source_project, options)
::Projects::MoveForksService.new(@project, @current_user).execute(source_project, options)
::Projects::MoveLfsObjectsProjectsService.new(@project, @current_user).execute(source_project, options)
::Projects::MoveUsersStarProjectsService.new(@project, @current_user).execute(source_project, **options)
::Projects::MoveAccessService.new(@project, @current_user).execute(source_project, **options)
::Projects::MoveDeployKeysProjectsService.new(@project, @current_user).execute(source_project, **options)
::Projects::MoveNotificationSettingsService.new(@project, @current_user).execute(source_project, **options)
::Projects::MoveForksService.new(@project, @current_user).execute(source_project, **options)
::Projects::MoveLfsObjectsProjectsService.new(@project, @current_user).execute(source_project, **options)
add_source_project_to_fork_network(source_project)
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment