Sha256: e65601cfd675b449621bd8cf22b579689ee27884cdec201329148f9b09e81c31
Contents?: true
Size: 553 Bytes
Versions: 7
Compression:
Stored size: 553 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 class WikiPage include Mongoid::Document include Mongoid::Timestamps field :title, type: String field :transient_property, type: String field :author, type: String field :description, type: String, localize: true embeds_many :edits, validate: false has_many :comments, dependent: :destroy, validate: false has_many :child_pages, class_name: "WikiPage", dependent: :delete_all, inverse_of: :parent_pages belongs_to :parent_pages, class_name: "WikiPage", inverse_of: :child_pages end
Version data entries
7 entries across 7 versions & 1 rubygems