module OpenProject::Meeting::Patches::ProjectPatch

Public Class Methods

included(receiver) click to toggle source
# File lib/open_project/meeting/patches/project_patch.rb, line 23
def self.included(receiver)
  receiver.class_eval do
    has_many :meetings, :include => [:author], :dependent => :destroy
  end
end