We're working with community non-profits who have a Host Home or empty bedrooms initiative to develop a workflow management tool to make the process scalable (across all providers), reduce institutional bias, and effectively capture data.
/forms -> Creating a form is not migrated as not being an immediate feature. The intake profile form definition is now located at /intake-profile/form/{profile_id}. The data loaded from disk until further development of Intake Profile and Forms makes progress. Updated frontend to use this path.
/responses -> Moved to /intake-profile/responses/{user_id} to put the focus on Intake Profile. Updated frontend to use this path.
/health
Rationale behind the changes?
This is part of the FastAPI migration work. It migrates these endpoints from Flask to FastAPI.
Related #789
What changes did you make?
Updated
test_authentication
- all tests passMigrated the following endpoints:
/coordinator/dashboard/all
/host
/forms
-> Creating a form is not migrated as not being an immediate feature. The intake profile form definition is now located at/intake-profile/form/{profile_id}
. The data loaded from disk until further development of Intake Profile and Forms makes progress. Updated frontend to use this path./responses
-> Moved to/intake-profile/responses/{user_id}
to put the focus on Intake Profile. Updated frontend to use this path./health
Rationale behind the changes?
This is part of the FastAPI migration work. It migrates these endpoints from Flask to FastAPI.
Testing done for these changes