model中会有许多kindeditor的资源

This commit is contained in:
lizanle 2015-03-26 15:47:27 +08:00
parent dc2c458b34
commit a4f1b9c625
1 changed files with 1 additions and 0 deletions

View File

@ -1,5 +1,6 @@
class Forum < ActiveRecord::Base
include Redmine::SafeAttributes
has_many_kindeditor_assets :assets, :dependent => :destroy
has_many :topics, :class_name => 'Memo', :conditions => "#{Memo.table_name}.parent_id IS NULL", :order => "#{Memo.table_name}.created_at DESC", :dependent => :destroy
has_many :memos, :dependent => :destroy, conditions: "parent_id IS NULL"
belongs_to :creator, :class_name => "User", :foreign_key => 'creator_id'