forked from saurabh/orbit4-5
12 lines
246 B
Ruby
12 lines
246 B
Ruby
|
class Category
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
|
||
|
field :disable, type: Boolean, default: false
|
||
|
field :title, localize: true
|
||
|
|
||
|
belongs_to :module_app
|
||
|
|
||
|
scope :enabled, ->{ where(:disable.in => [false, nil, ''])}
|
||
|
end
|