orbit4-5/app/models/group_category.rb

12 lines
298 B
Ruby
Raw Normal View History

2015-03-19 06:24:40 +00:00
class GroupCategory
include Mongoid::Document
include Mongoid::Timestamps
field :title, localize: true
2015-05-22 19:48:07 +00:00
field :is_accepted, type: Boolean, :default => true
2015-03-19 06:24:40 +00:00
has_many :groups
2015-05-22 19:48:07 +00:00
scope :is_requested, ->{ where(is_accepted: false) }
scope :by_admin, ->{ where(is_accepted: true) }
2015-03-19 06:24:40 +00:00
end