##// END OF EJS Templates
* reposman can create git repository with "--scm git" option...
* reposman can create git repository with "--scm git" option * light refactoring git-svn-id: http://redmine.rubyforge.org/svn/trunk@1866 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1695:b20281f15156
r1864:a07a6d4aa4ba
Show More
meeting.rb
11 lines | 454 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