Files
nairobi/app/models/site_customization/page.rb
Javi Martín 2ab49a1832 Refactor globalize models code using a concern
I've chosen the name "Globalizable" because "Translatable" already
existed.
2018-10-22 16:28:53 +02:00

26 lines
890 B
Ruby

class SiteCustomization::Page < ActiveRecord::Base
VALID_STATUSES = %w(draft published)
translates :title, touch: true
translates :subtitle, touch: true
translates :content, touch: true
include Globalizable
translation_class.instance_eval do
validates :title, presence: true
end
validates :slug, presence: true,
uniqueness: { case_sensitive: false },
format: { with: /\A[0-9a-zA-Z\-_]*\Z/, message: :slug_format }
validates :status, presence: true, inclusion: { in: VALID_STATUSES }
scope :published, -> { where(status: 'published').order('id DESC') }
scope :with_more_info_flag, -> { where(status: 'published', more_info_flag: true).order('id ASC') }
scope :with_same_locale, -> { joins(:translations).where("site_customization_page_translations.locale": I18n.locale) }
def url
"/#{slug}"
end
end