Newer
Older
class LearningObject < ActiveRecord::Base
has_and_belongs_to_many :subjects
has_many :collection_items, as: :collectionable
has_many :collections, through: :collection_items
has_many :views, as: :viewable
has_many :downloads, as: :downloadable
has_many :likes, as: :likeable
has_many :shares, as: :shareable
belongs_to :published, polymorphic: true