Sha256: 1084ff27ec6749d4ec1bfe814e8c6ebd96a5857331bb17cc0032bd311cc856d1

Contents?: true

Size: 277 Bytes

Versions: 5

Compression:

Stored size: 277 Bytes

Contents

class Post
  include Mongoid::Document
  include Mongoid::Timestamps

  field :title
  field :body
  field :view_count, type: ::Integer, default: 0
  belongs_to :admin_user
  belongs_to :other_user, class_name: 'AdminUser'

  embeds_one :author
  field :'author.city.name'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
activeadmin-mongoid-1.0.0 test_app/app/models/post.rb
activeadmin-mongoid-0.9.0 test_app/app/models/post.rb
activeadmin-mongoid-0.7.0 test_app/app/models/post.rb
activeadmin-mongoid-0.5.0 test_app/app/models/post.rb
activeadmin-mongoid-0.4.0 test_app/app/models/post.rb