🚀 Invitation features
Invitation features are SDK composers, not Express middleware; authService mounts all four Invitation features with the required stores and drivers.
Inventory
| Feature | Composed schema(s) | Composed route(s) | Purpose |
|---|---|---|---|
createInvitationFeature | createInvitationSchema | createInvitationRoute | Create and email an invitation. |
getInvitationFeature | getInvitationSchema | getInvitationByIdRoute | Retrieve one invitation. |
findInvitationsFeature | findInvitationsSchema | findInvitationsRoute | List invitations. |
deleteInvitationFeature | deleteInvitationSchema | deleteInvitationRoute | Delete an invitation. |
Details
Each feature is mounted by authService. The source definitions below show the exact schema-to-route composition.
createInvitationFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by authService or a compatible custom service context.View complete source
getInvitationFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by authService or a compatible custom service context.View complete source
findInvitationsFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by authService or a compatible custom service context.View complete source
deleteInvitationFeature
Implementation
This feature composes the schema and route linked in its inventory row; it is mounted by authService or a compatible custom service context.View complete source