????

Your IP : 3.129.211.72


Current Path : C:/inetpub/vhost/redmine/extra/sample_plugin/app/models/
Upload File :
Current File : C:/inetpub/vhost/redmine/extra/sample_plugin/app/models/meeting.rb

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 => proc { joins(:project) },
                            :permission => nil
end