##// END OF EJS Templates
Eager load group projects to avoid N SQL queries....
Jean-Philippe Lang -
r3621:e417d755e94e
parent child
Show More
@@ -57,7 +57,7 class GroupsController < ApplicationController
57
57
58 # GET /groups/1/edit
58 # GET /groups/1/edit
59 def edit
59 def edit
60 @group = Group.find(params[:id])
60 @group = Group.find(params[:id], :include => :projects)
61 end
61 end
62
62
63 # POST /groups
63 # POST /groups
General Comments 0
You need to be logged in to leave comments. Login now