Draft
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR introduces a new “custom forms” feature for the manager API, including endpoints to create/manage forms and submit/retrieve responses, backed by new Prisma models.
Changes:
- Adds
/v1/manager/formsrouter with OpenAPI registrations for forms, form parts, and form responses. - Implements handler logic for creating/updating/deleting forms and parts, submitting responses, and fetching responses.
- Extends Prisma schema with
Form,FormPart,FormResponse,FormResponsePart, andFormPartTypeplus new relations.
Reviewed changes
Copilot reviewed 16 out of 17 changed files in this pull request and generated 18 comments.
Show a summary per file
| File | Description |
|---|---|
| src/routes/manager/manager.routes.ts | Mounts the new manager forms router. |
| src/routes/manager/forms.routes.ts | Defines forms/parts/responses routes and OpenAPI registrations. |
| src/handler/manager/forms/createForm.ts | Creates a form and initial parts. |
| src/handler/manager/forms/getForms.ts | Lists forms for the authenticated team. |
| src/handler/manager/forms/updateFormName.ts | Renames a form. |
| src/handler/manager/forms/deleteForm.ts | Deletes a form. |
| src/handler/manager/forms/parts/createFormPart.ts | Adds a part to a form and reorders. |
| src/handler/manager/forms/parts/getFormParts.ts | Fetches a form part (and response parts). |
| src/handler/manager/forms/parts/updateFormPart.ts | Updates a form part. |
| src/handler/manager/forms/parts/deleteFormPart.ts | Deletes a form part. |
| src/handler/manager/forms/parts/reorderFormParts.ts | Reorders form parts. |
| src/handler/manager/forms/responses/submitForm.ts | Submits a form response (currently unauthenticated). |
| src/handler/manager/forms/responses/getResponses.ts | Fetches all responses for a form. |
| src/handler/manager/forms/responses/getResponse.ts | Fetches a single response. |
| src/handler/manager/forms/responses/deleteResponse.ts | Deletes a response. |
| prisma/schema.prisma | Adds DB models/enums/relations for the forms feature. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
giggity