Redmine/extra/sample_plugin/app/models/meeting.rb

7 lines
192 B
Ruby
Raw Normal View History

class Meeting < ActiveRecord::Base
belongs_to :project
acts_as_activity_provider :timestamp => 'scheduled_on',
:find_options => { :include => :project }
end