summaryrefslogtreecommitdiff
path: root/app/controllers/admin
diff options
context:
space:
mode:
authorAlejandro Rodríguez <alejorro70@gmail.com>2019-03-18 21:01:49 -0300
committerAlejandro Rodríguez <alejorro70@gmail.com>2019-03-18 21:27:28 -0300
commit585fcfb9e7be7300af04cd2f9c6d1d97d5333cf5 (patch)
tree3c49516c3df69addbbdc5c08f1c6ff241ed54158 /app/controllers/admin
parenta3b3da72775fd37f7533ddd88fe47600079b4ed9 (diff)
downloadgitlab-ce-585fcfb9e7be7300af04cd2f9c6d1d97d5333cf5.tar.gz
Fix undefined variable error on json project views
This mistake seems to have always been there, but it only resulted in errors on the `/explore*.json` since they were the one that _actually_ relied on the local variables.
Diffstat (limited to 'app/controllers/admin')
-rw-r--r--app/controllers/admin/projects_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin/projects_controller.rb b/app/controllers/admin/projects_controller.rb
index 550f29a58d2..3fa61c7b117 100644
--- a/app/controllers/admin/projects_controller.rb
+++ b/app/controllers/admin/projects_controller.rb
@@ -15,7 +15,7 @@ class Admin::ProjectsController < Admin::ApplicationController
format.html
format.json do
render json: {
- html: view_to_html_string("admin/projects/_projects", locals: { projects: @projects })
+ html: view_to_html_string("admin/projects/_projects", projects: @projects)
}
end
end