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/finders/groups/accepting_project_creations_finder.rb')
-rw-r--r--app/finders/groups/accepting_project_creations_finder.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/finders/groups/accepting_project_creations_finder.rb b/app/finders/groups/accepting_project_creations_finder.rb
index 76463086943..ad942d84096 100644
--- a/app/finders/groups/accepting_project_creations_finder.rb
+++ b/app/finders/groups/accepting_project_creations_finder.rb
@@ -11,9 +11,9 @@ module Groups
[
current_user
.manageable_groups(include_groups_with_developer_maintainer_access: true)
- .project_creation_allowed,
+ .project_creation_allowed(current_user),
owner_maintainer_groups_originating_from_group_shares
- .project_creation_allowed,
+ .project_creation_allowed(current_user),
*developer_groups_originating_from_group_shares
]