forked from saurabh/orbit4-5
9 lines
186 B
Ruby
9 lines
186 B
Ruby
|
class Role
|
||
|
include Mongoid::Document
|
||
|
field :key, type: String
|
||
|
field :title, type: String, localize: true
|
||
|
|
||
|
has_and_belongs_to_many :member_profiles
|
||
|
has_many :authorizations
|
||
|
end
|