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_group_transfers_finder.rb')
-rw-r--r--app/finders/groups/accepting_group_transfers_finder.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/app/finders/groups/accepting_group_transfers_finder.rb b/app/finders/groups/accepting_group_transfers_finder.rb
index df67f940d20..c95318d0098 100644
--- a/app/finders/groups/accepting_group_transfers_finder.rb
+++ b/app/finders/groups/accepting_group_transfers_finder.rb
@@ -13,12 +13,7 @@ module Groups
def execute
return Group.none unless can_transfer_group?
- items = if Feature.enabled?(:include_groups_from_group_shares_in_group_transfer_locations)
- find_all_groups
- else
- find_groups
- end
-
+ items = find_all_groups
items = by_search(items)
sort(items)