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

Version Path
subj_models-0.5.9 lib/subj_models/video.rb
subj_models-0.5.8 lib/subj_models/video.rb
subj_models-0.5.7 lib/subj_models/video.rb
subj_models-0.5.6 lib/subj_models/video.rb
subj_models-0.5.5 lib/subj_models/video.rb
subj_models-0.5.4 lib/subj_models/video.rb
subj_models-0.5.3 lib/subj_models/video.rb
subj_models-0.5.2 lib/subj_models/video.rb
subj_models-0.5.1 lib/subj_models/video.rb
subj_models-0.4.3 lib/subj_models/video.rb