Module: CFoundryHelper::Models::SpaceRole

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

Overview

This module lists the Roles available for spaces There are 3 basic roles for spaces: Manager: Can invite/manage users, enable features for a given space Developer: Can create, delete, manage applications and services, full access to all usage reports and logs Auditor: View only access to all space information, settings, reports, logs

Constant Summary collapse

MANAGER =
:manager
DEVELOPER =
:developer
AUDITOR =
:auditor

Class Method Summary collapse

Class Method Details

.get_rolesObject



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

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