ScopedRoleOrgMember is the org role with the organization ID
(organizationID uuid.UUID)
| 180 | |
| 181 | // ScopedRoleOrgMember is the org role with the organization ID |
| 182 | func ScopedRoleOrgMember(organizationID uuid.UUID) RoleIdentifier { |
| 183 | return RoleIdentifier{Name: RoleOrgMember(), OrganizationID: organizationID} |
| 184 | } |
| 185 | |
| 186 | func ScopedRoleOrgAuditor(organizationID uuid.UUID) RoleIdentifier { |
| 187 | return RoleIdentifier{Name: RoleOrgAuditor(), OrganizationID: organizationID} |