##// END OF EJS Templates
Russian "x_hours" translation updated by Mikhail Velkin (#12630)...
Russian "x_hours" translation updated by Mikhail Velkin (#12630) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11051 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9160:db110ba35e73
r10821:c3cfdfadfdef
Show More
meeting.rb
11 lines | 436 B | text/x-ruby | RubyLexer
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 }
end