forked from saurabh/orbit4-5
10 lines
172 B
Ruby
10 lines
172 B
Ruby
|
class RoleField
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
|
||
|
field :key, type: String
|
||
|
field :title, type: String, localize: true
|
||
|
|
||
|
embedded_in :role
|
||
|
end
|