mirror of
https://github.com/redmine/redmine.git
synced 2025-11-09 06:46:01 +01:00
6 lines
117 B
Ruby
6 lines
117 B
Ruby
|
|
class Reply < ActiveRecord::Base
|
||
|
|
belongs_to :topic, :include => [:replies]
|
||
|
|
|
||
|
|
validates_presence_of :content
|
||
|
|
end
|