Files
fetsite/app/models/thema.rb
HausdorffHimself 3be95d2ede FIXES:
* Inflections für Thema/Themen etc.
  * Korrigierte Views
2013-08-06 02:06:48 +02:00

12 lines
350 B
Ruby

class Thema < ActiveRecord::Base
attr_accessible :text, :title
has_many :fragen
has_many :attachments
belongs_to :themengruppe, :foreign_key => "themengruppe_id"
validates :themengruppe, :presence => true
validates :title, :presence => true
translates :title,:text, :versioning =>true, :fallbacks_for_empty_translations => true
end