Show More
Commit Description:
keep all heartbeat instead of only the latest one...
Commit Description:
keep all heartbeat instead of only the latest one (grafted from 0bdf62fde5fdb94d6f94c2b8b8ebc58ffbe8d2f9)
References:
File last commit:
Show/Diff file:
Action:
app/models/contest.rb | 8 lines | 163 B | text/x-ruby | RubyLexer |
Jittat Fakcharoenphol
added contest model
r266 class Contest < ActiveRecord::Base
Jittat Fakcharoenphol
created join tables for contests and users and problems
r268
has_and_belongs_to_many :users
has_and_belongs_to_many :problems
Jittat Fakcharoenphol
added verify plug-in, fixed form_for, form_tag in views, changed named_scope to scope
r319 scope :enabled, :conditions => {:enabled => true}
Jittat Fakcharoenphol
shows only enabled contests, ordered by name
r285
Jittat Fakcharoenphol
added contest model
r266 end