Sha256: fe2a690937e66c01a7f4c94e96207b38a9e23d036fb418bb6a0e8e201f52241e

Contents?: true

Size: 395 Bytes

Versions: 27

Compression:

Stored size: 395 Bytes

Contents

# frozen_string_literal: true
# encoding: utf-8

class Note
  include Mongoid::Document
  field :text, type: String
  field :saved, type: Mongoid::Boolean, default: false
  embedded_in :noteable, polymorphic: true

  after_save :update_saved

  scope :permanent, ->{ where(saved: true) }

  def update_saved
    self.saved = true
  end

  embedded_in :page
  field :message, :type => String
end

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
mongoid-7.3.5 spec/support/models/note.rb
mongoid-7.3.4 spec/support/models/note.rb
mongoid-7.1.11 spec/app/models/note.rb
mongoid-7.2.6 spec/support/models/note.rb
mongoid-7.3.3 spec/support/models/note.rb
mongoid-7.3.2 spec/support/models/note.rb
mongoid-7.2.5 spec/support/models/note.rb
mongoid-7.1.10 spec/app/models/note.rb
mongoid-7.1.9 spec/app/models/note.rb
mongoid-7.2.4 spec/support/models/note.rb
mongoid-7.3.1 spec/support/models/note.rb
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/mongoid-7.1.7/spec/app/models/note.rb
mongoid-7.3.0 spec/support/models/note.rb
mongoid-7.2.3 spec/support/models/note.rb
mongoid-7.1.8 spec/app/models/note.rb
mongoid-7.2.2 spec/support/models/note.rb
mongoid-7.2.1 spec/support/models/note.rb
mongoid-7.1.7 spec/app/models/note.rb
mongoid-7.2.0 spec/support/models/note.rb
mongoid-7.1.6 spec/app/models/note.rb