Sha256: e511248ef60c078bfd5fd273acaacc8c77d92720240bdc9c6f0b4bbcdabfe343
Contents?: true
Size: 351 Bytes
Versions: 29
Compression:
Stored size: 351 Bytes
Contents
# frozen_string_literal: true 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
29 entries across 29 versions & 1 rubygems