meeting.rb
12 lines
| 471 B
| text/x-ruby
|
RubyLexer
|
r1694 | class Meeting < ActiveRecord::Base | ||
belongs_to :project | ||||
|
r1695 | |||
acts_as_event :title => Proc.new {|o| "#{o.scheduled_on} Meeting"}, | ||||
:datetime => :scheduled_on, | ||||
:author => nil, | ||||
|
r9160 | :url => Proc.new {|o| {:controller => 'meetings', :action => 'show', :id => o.id}} | ||
|
r1694 | acts_as_activity_provider :timestamp => 'scheduled_on', | ||
|
r13649 | :scope => includes(:project), | ||
:permission => nil | ||||
|
r1694 | end | ||