thema validations

This commit is contained in:
Andreas Stephanides
2014-03-30 20:09:53 +02:00
parent 1bf0940862
commit 46f5f713ce
2 changed files with 5 additions and 2 deletions

View File

@@ -16,9 +16,10 @@ class Thema < ActiveRecord::Base
has_many :attachments has_many :attachments
belongs_to :themengruppe, :foreign_key => "themengruppe_id" belongs_to :themengruppe, :foreign_key => "themengruppe_id"
has_one :gremium has_one :gremium
has_many :nlinks, as: :link
validates :themengruppe, :presence => true validates :themengruppe, :presence => true
validates :title, :presence => true validates :title, :presence => true
validates :text, :presence => true
scope :search, ->(query) {where("text like ? or title like ?", "%#{query}%", "%#{query}%")} scope :search, ->(query) {where("text like ? or title like ?", "%#{query}%", "%#{query}%")}
has_many :nlinks, as: :link
translates :title,:text, :versioning =>true, :fallbacks_for_empty_translations => true translates :title,:text, :versioning =>true, :fallbacks_for_empty_translations => true
end end

View File

@@ -13,9 +13,11 @@ class Themengruppe < ActiveRecord::Base
attr_accessible :text, :title, :picture, :priority attr_accessible :text, :title, :picture, :priority
has_many :themen, class_name: 'Thema' has_many :themen, class_name: 'Thema'
has_many :fragen, through: :themen has_many :fragen, through: :themen
mount_uploader :picture, PictureUploader mount_uploader :picture, PictureUploader
validates :title, :presence => true validates :title, :presence => true
validates :text, :presence => true
translates :title,:text, :versioning =>true, :fallbacks_for_empty_translations => true translates :title,:text, :versioning =>true, :fallbacks_for_empty_translations => true
end end