Lunatic-Labs / rubricapp

RubricApp is a web application for evaluating students' professional skills, such as teamwork and communication.
7 stars 8 forks source link

Update frontend API requests to use HTTPS #653

Closed JeffAllen714 closed 3 months ago

JeffAllen714 commented 4 months ago

Currently, the frontend code is making API requests to the backend using HTTP instead of HTTPS. This is causing a mixed content error in the browser since the frontend is served over HTTPS while the API requests are made over HTTP. As a result, the login process is not functioning correctly, and users are encountering issues. So, we need to ensure that any parts of our frontend code that are making API requests (fetch requests, api service files, .env files, etc) need to get changed to use HTTPS.