Sha256: ed306be06addddd073f91a9e4149e121bda1f060e39bdf9fb22c1aec1776c3b6
Contents?: true
Size: 525 Bytes
Versions: 50
Compression:
Stored size: 525 Bytes
Contents
require 'subj_models/concerns/comprising_external_id' module SubjModels module VideoModule def self.included(including_class) including_class.class_eval do include SubjModels::ComprisingExternalId belongs_to :document_file belongs_to :brand scope :brand_id, -> brand { where(brand_id: brand) } scope :is_promo, -> condition { where(is_promo: condition) } end end def to_s "#{title1} #{title2}#{' - ПРОМО' if is_promo}" end end end
Version data entries
50 entries across 50 versions & 2 rubygems