From: Jean-Philippe Lang Date: Sun, 27 Jul 2008 19:18:35 +0000 (+0000) Subject: Follows r1703. X-Git-Tag: 0.8.0-RC1~316 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b20281f1515675813ade9e1284c39fd00d261365;p=redmine.git Follows r1703. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1704 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/extra/sample_plugin/app/models/meeting.rb b/extra/sample_plugin/app/models/meeting.rb index 89ecd5253..c1bb64a93 100644 --- a/extra/sample_plugin/app/models/meeting.rb +++ b/extra/sample_plugin/app/models/meeting.rb @@ -1,5 +1,10 @@ class Meeting < ActiveRecord::Base belongs_to :project + + acts_as_event :title => Proc.new {|o| "#{o.scheduled_on} Meeting"}, + :datetime => :scheduled_on, + :author => nil, + :url => Proc.new {|o| {:controller => 'meetings', :action => 'show', :id => o.id}} acts_as_activity_provider :timestamp => 'scheduled_on', :find_options => { :include => :project }