Module: CFoundryHelper::Models::OrganizationRole

Defined in:
lib/cfoundry_helper/models/organization_role.rb

Overview

This module lists the Roles available for organizations There are 3 basic roles for organizations: Manager: Can invite/manage users, select/change the plan, establish spending limits Billing Manager: Can edit/change the billing account info, payment info Auditor: View only access to all org and space info, settings, reports

Constant Summary collapse

MANAGER =
:manager
BILLINGMANAGER =
:billing_manager
AUDITOR =
:auditor

Class Method Summary collapse

Class Method Details

.get_rolesObject



13
14
15
# File 'lib/cfoundry_helper/models/organization_role.rb', line 13

def self.get_roles
  return [MANAGER, BILLINGMANAGER, AUDITOR]
end