publication/app/models/publication.rb

20 lines
501 B
Ruby
Raw Normal View History

2023-06-04 14:41:53 +00:00
class Publication
2018-10-04 02:47:23 +00:00
include Mongoid::Document
include Mongoid::Timestamps
include OrbitModel::Status
include OrbitTag::Taggable
include OrbitCategory::Categorizable
include Slug
field :title, type: String, localize: true
field :pub_date, type: DateTime
field :author, type: String, localize: true
field :author_description, type: String, localize: true
2018-10-04 05:29:27 +00:00
field :pub_information, localize: true
2018-10-04 02:47:23 +00:00
mount_uploader :cover, ImageUploader
has_many :chapters, dependent: :destroy
end