orbit4-5/app/models/role.rb

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