Sha256: cfde5ec45f0d43b76330aa0c6a6203a680b57aaadbe1349e9ce685a6ae468704
Contents?: true
Size: 369 Bytes
Versions: 27
Compression:
Stored size: 369 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 class Comment include Mongoid::Document field :title, type: String field :text, type: String belongs_to :account belongs_to :movie belongs_to :rating belongs_to :wiki_page belongs_to :commentable, polymorphic: true validates :title, presence: true validates :movie, :rating, associated: true end
Version data entries
27 entries across 27 versions & 2 rubygems