summaryrefslogtreecommitdiffstats
path: root/extra/sample_plugin/app/models/meeting.rb
blob: 89ecd525311cf114ba7dd73c1ba5d8de6b5844fb (plain)
1
2
3
4
5
6
class Meeting < ActiveRecord::Base
  belongs_to :project
  
  acts_as_activity_provider :timestamp => 'scheduled_on',
                            :find_options => { :include => :project }
end