Show More
Commit Description:
added message hiding for admin in msg console...
Commit Description:
added message hiding for admin in msg console git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@371 6386c4cd-e34a-4fa8-8920-d93eb39b512e
File last commit:
Show/Diff file:
Action:
app/models/problem.rb | 12 lines | 256 B | text/x-ruby | RubyLexer |
pramook
initial commit...
r0 class Problem < ActiveRecord::Base
jittat
[web] refactor problem description, some styling...
r92 belongs_to :description
jittat
added quick new problem...
r171 validates_presence_of :name
validates_presence_of :full_name
pramook
initial commit...
r0 def self.find_available_problems
jittat
fixed msg grammar...
r154 find(:all, :conditions => {:available => true}, :order => "date_added DESC")
pramook
initial commit...
r0 end
end