Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,8 @@ For each PR made, an entry should be added to this changelog. It should contain
- Changes:
- Added a JavaScript validation check on form submission to ensure the document type (stored in a hidden input) is not empty.
- Display an error message and prevent form submission if the field is empty.

- 1249-add-https-link-to-cors_allowed_origins-for-sde-lrm
- Description: The feedback form API was throwing CORS errors and to rectify that, we need to add the apt https link for sde-lrm.
- Changes:
- Added `https://sde-lrm.nasa-impact.net` to `CORS_ALLOWED_ORIGINS` in the base settings.
1 change: 1 addition & 0 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
CORS_ALLOWED_ORIGINS = [
"http://localhost:3000",
"http://sde-lrm.nasa-impact.net",
"https://sde-lrm.nasa-impact.net",
"https://sde-qa.nasa-impact.net",
"https://sciencediscoveryengine.test.nasa.gov",
"https://sciencediscoveryengine.nasa.gov",
Expand Down