summaryrefslogtreecommitdiffstats
path: root/extra/sample_plugin
diff options
context:
space:
mode:
Diffstat (limited to 'extra/sample_plugin')
-rw-r--r--extra/sample_plugin/app/models/meeting.rb5
1 files changed, 5 insertions, 0 deletions
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 }