blob: ca8af1021240f3b45f763cf482d5bfe2ab6f9025 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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',
:scope => includes(:project),
:permission => nil
end
|