🚀 Organization features
Organization features are SDK composers, not Express middleware; organizationService mounts the Organization features with the required stores and drivers.
Inventory
| Feature | Composed schema(s) | Composed route(s) | Purpose |
|---|---|---|---|
createOrganizationFeature | createOrganizationSchema | createOrganizationRoute | Create an organization. |
getOrganizationFeatures | getOrganizationSchema | getOrganizationRoute | Read one organization. |
findOrganizationsFeatures | findOrganizationsSchema | findOrganizationsRoute | List organizations with filtering and pagination. |
editOrganizationFeatures | updateOrganizationSchema | updateOrganizationRoute | Update an organization. |
deleteOrganizationFeatures | deleteOrganizationSchema | deleteOrganizationRoute | Delete an organization. |
getOrganizationMemberFeatures | getOrganizationMemberRoleSchema | getOrganizationMemberRoleRoute | Read a member role. |
checkOrganizationMemberExistenceFeatures | checkOrganizationMemberExistenceSchema | checkOrganizationMemberExistenceRoute | Check member existence. |
findOrganizationMembersFeatures | findOrganizationMembersSchema | findOrganizationMembersRoute | List organization members. |
findOrganizationsForMemberFeatures | findOrganizationsForMemberSchema | findOrganizationsForMemberRoute | List organizations for a member. |
editOrganizationMembersFeatures | upsertOrganizationMembersSchema | upsertOrganizationMembersRoute | Upsert organization members. |
deleteOrganizationMemberFeatures | deleteOrganizationMemberSchema | deleteOrganizationMemberRoute | Delete an organization member. |
findOrganizationDescendantsFeatures | findOrganizationDescendantsSchema | findOrganizationDescendantsRoute | List organization descendants. |
getLogoUploadUrlFeature | getSignedImageUploadUrlSchema | getLogoUploadUrlRoute | Create a signed logo upload URL. |
getCertificateUploadUrlFeature | getCertificateUploadUrlSchema | getCertificateUploadUrlRoute | Create a signed certificate upload URL. |
createChangeRequestFeature | createChangeRequestSchema | createChangeRequestRoute | Create a change request. |
updateOrganizationAsAdminFeature | updateOrganizationAsAdminSchema | updateOrganizationAsAdminRoute | Update an organization as admin. |
findChangeRequestsForOrganizationFeature | findChangeRequestsForOrganizationSchema | findChangeRequestsForOrganizationRoute | List change requests for an organization. |
getOrganizationFollowersFeature | getOrganizationFollowersSchema | getOrganizationFollowersRoute | List organization followers. |
Details
Each feature is mounted by organizationService. The source definitions below show the exact schema-to-route composition.
createOrganizationFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
getOrganizationFeatures
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
findOrganizationsFeatures
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
editOrganizationFeatures
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
deleteOrganizationFeatures
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
getOrganizationMemberFeatures
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
checkOrganizationMemberExistenceFeatures
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
findOrganizationMembersFeatures
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
findOrganizationsForMemberFeatures
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
editOrganizationMembersFeatures
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
deleteOrganizationMemberFeatures
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
findOrganizationDescendantsFeatures
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
getLogoUploadUrlFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
getCertificateUploadUrlFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
createChangeRequestFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
updateOrganizationAsAdminFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
findChangeRequestsForOrganizationFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source
getOrganizationFollowersFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by organizationService or a compatible custom service context.View complete source