orbit-basic/vendor/built_in_modules/archive/app/models/archive_file_category.rb

16 lines
277 B
Ruby

# encoding: utf-8
class ArchiveFileCategory
include Mongoid::Document
include Mongoid::Timestamps
# include Mongoid::MultiParameterAttributes
field :key
field :title, localize: true
has_many :archive_files
validates :title, :at_least_one => true
end