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/controllers/projects/forks_controller.rb')
-rw-r--r--app/controllers/projects/forks_controller.rb12
1 files changed, 11 insertions, 1 deletions
diff --git a/app/controllers/projects/forks_controller.rb b/app/controllers/projects/forks_controller.rb
index 8fa3635a737..9e42d218ceb 100644
--- a/app/controllers/projects/forks_controller.rb
+++ b/app/controllers/projects/forks_controller.rb
@@ -56,7 +56,13 @@ class Projects::ForksController < Projects::ApplicationController
can_fork_to?(current_user.namespace)
render json: {
- namespaces: ForkNamespaceSerializer.new.represent(namespaces, project: project, current_user: current_user, memberships: memberships_hash)
+ namespaces: ForkNamespaceSerializer.new.represent(
+ namespaces,
+ project: project,
+ current_user: current_user,
+ memberships: memberships_hash,
+ forked_projects: forked_projects_by_namespace(namespaces)
+ )
}
end
end
@@ -129,6 +135,10 @@ class Projects::ForksController < Projects::ApplicationController
def memberships_hash
current_user.members.where(source: load_namespaces_with_associations).index_by(&:source_id)
end
+
+ def forked_projects_by_namespace(namespaces)
+ project.forks.where(namespace: namespaces).includes(:namespace).index_by(&:namespace_id)
+ end
end
Projects::ForksController.prepend_mod_with('Projects::ForksController')