2018-10-04 02:47:23 +00:00
|
|
|
class Chapter
|
|
|
|
include Mongoid::Document
|
|
|
|
include Slug
|
|
|
|
|
|
|
|
field :title, type: String, localize: true
|
|
|
|
field :author, type: String, localize: true
|
|
|
|
field :author_description, type: String, localize: true
|
|
|
|
field :text, localize: true
|
|
|
|
field :page, type: String
|
|
|
|
field :sort_number, type: Integer
|
|
|
|
|
|
|
|
mount_uploader :file, AssetUploader
|
|
|
|
|
2023-06-04 14:41:53 +00:00
|
|
|
belongs_to :publication
|
2018-10-04 02:47:23 +00:00
|
|
|
end
|