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
path: root/lib
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-05-28 09:10:48 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-28 09:10:48 +0300
commitd193734fb97510ffc55f84c2f3a0a3692cd2d859 (patch)
treed01546164fb50d89639e8f4c39e81776bb1347c6 /lib
parent50135e6e0460e9276588670e3235a95f19a1660d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib')
-rw-r--r--lib/api/project_templates.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/project_templates.rb b/lib/api/project_templates.rb
index 5d6f67ccbae..acf9bfece65 100644
--- a/lib/api/project_templates.rb
+++ b/lib/api/project_templates.rb
@@ -26,7 +26,7 @@ module API
use :pagination
end
get ':id/templates/:type' do
- templates = TemplateFinder.all_template_names_array(user_project, params[:type])
+ templates = TemplateFinder.all_template_names(user_project, params[:type]).values.flatten
present paginate(::Kaminari.paginate_array(templates)), with: Entities::TemplatesList
end