This commit is contained in:
2014-10-29 13:27:34 +01:00
parent 6dfeafecb5
commit b0abb75d6b

View File

@@ -21,7 +21,7 @@ include Rails.application.routes.url_helpers
validates :themengruppe, :presence => true
validates :title, :presence => true
validates :text, :presence => true
scope :public, where(:isdraft=>false).inlcudes(:themengruppe).where("themengruppen.public")
scope :public, where(:isdraft=>false).includes(:themengruppe).where("themengruppen.public")
default_scope order(:priority).reverse_order
scope :search, ->(query) {where("text like ? or title like ?", "%#{query}%", "%#{query}%")}
scope :outdated, -> {includes(:translations).where("thema_translations.updated_at<?",2.month.ago).where("thema_translations.locale"=>I18n.t.locale)