Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/projects/create_service.rb')
-rw-r--r--app/services/projects/create_service.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/services/projects/create_service.rb b/app/services/projects/create_service.rb
index d3313526eaf..94cc4700a49 100644
--- a/app/services/projects/create_service.rb
+++ b/app/services/projects/create_service.rb
@@ -125,7 +125,7 @@ module Projects
setup_authorizations
- current_user.invalidate_personal_projects_count
+ project.invalidate_personal_projects_count_of_owner
Projects::PostCreationWorker.perform_async(@project.id)
@@ -160,7 +160,6 @@ module Projects
# AuthorizedProjectsWorker but with some delay and lower urgency as a
# safety net.
@project.group.refresh_members_authorized_projects(
- blocking: false,
priority: UserProjectAccessChangedService::LOW_PRIORITY
)
else
@@ -198,7 +197,7 @@ module Projects
end
def create_sast_commit
- ::Security::CiConfiguration::SastCreateService.new(@project, current_user, {}, commit_on_default: true).execute
+ ::Security::CiConfiguration::SastCreateService.new(@project, current_user, { initialize_with_sast: true }, commit_on_default: true).execute
end
def readme_content