]> source.dussan.org Git - redmine.git/commitdiff
Set inverse_of on project boards association.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 10 Jun 2017 23:47:15 +0000 (23:47 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 10 Jun 2017 23:47:15 +0000 (23:47 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@16659 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/boards_controller.rb
app/models/project.rb

index a2bbcbbcf64a66ca817eb8797305a8e73ecd6937..e8770b2ae1aaf5c80ff5fa0fc9f92299948a48e0 100644 (file)
@@ -25,7 +25,7 @@ class BoardsController < ApplicationController
   helper :watchers
 
   def index
-    @boards = @project.boards.preload(:project, :last_message => :author).to_a
+    @boards = @project.boards.preload(:last_message => :author).to_a
     # show the board if there is only one
     if @boards.size == 1
       @board = @boards.first
index 1e187da1f032c14b1af61cc6d74d9667e50c973e..8afc686c77610cd0b15a3b0b5afea4b0b189c489 100644 (file)
@@ -45,7 +45,7 @@ class Project < ActiveRecord::Base
   has_many :documents, :dependent => :destroy
   has_many :news, lambda {includes(:author)}, :dependent => :destroy
   has_many :issue_categories, lambda {order(:name)}, :dependent => :delete_all
-  has_many :boards, lambda {order(:position)}, :dependent => :destroy
+  has_many :boards, lambda {order(:position)}, :inverse_of => :project, :dependent => :destroy
   has_one :repository, lambda {where(:is_default => true)}
   has_many :repositories, :dependent => :destroy
   has_many :changesets, :through => :repository