forked from saurabh/orbit4-5
11 lines
181 B
Ruby
11 lines
181 B
Ruby
|
class Workgroup
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
|
||
|
field :key, type: String
|
||
|
field :title, type: String
|
||
|
|
||
|
has_many :authorizations
|
||
|
has_many :users
|
||
|
end
|