#135 [FEAT]: Endpoints for protocol grouped answers #136
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.
This pull request includes significant changes to the
prisma/schema.prisma
file and several controllers in thesrc/controllers
directory to introduce new features and improve the handling of application answers. The most important changes include adding new enums and fields, modifying existing models, and updating controller logic to handle the new fields and enums.Schema Updates:
GUEST
toUserRole
andAUTHENTICATED
toVisibilityMode
inprisma/schema.prisma
. [1] [2]approved
field toApplicationAnswer
model and replacedaddressId
withcoordinateId
to link to a newCoordinate
model.keepLocation
field toApplication
model.Coordinate
model to store latitude and longitude data.Controller Updates:
applicationAnswerController.ts
to handle the newapproved
field andcoordinate
model, including logic for creating and updating application answers with coordinates. [1] [2] [3] [4] [5] [6]approveApplicationAnswer
function toapplicationAnswerController.ts
to allow specific users to approve application answers.applicationController.ts
to include thekeepLocation
field in application creation and update processes, and to filter answers based on approval status and user permissions. [1] [2] [3] [4] [5] [6] [7] [8] [9]These changes enhance the application's ability to handle more complex data relationships and improve the user experience by introducing new features and refining existing functionalities.