Bloom is Exygy’s affordable housing platform. Bloom's goal is to be a single entry point for affordable housing seekers and a hub for application and listing management for developers.
After adding a new GET endpoint to the listings path, it was discovered that paths with GET /:id can cause errors if the function is not at the bottom of the file as is recommended by NestJS documentation.
https://docs.nestjs.com/controllers#route-parameters
AC:
Update all controllers in the BE to have the GET id functions at the bottom of the file.
Update Readme/best practices documentation to include this as a standard
After adding a new GET endpoint to the listings path, it was discovered that paths with GET
/:id
can cause errors if the function is not at the bottom of the file as is recommended by NestJS documentation. https://docs.nestjs.com/controllers#route-parametersAC: