You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix - resolve file upload failures in pre-prod environments (#183)
Fix - resolve file upload failures in pre-prod environments
File uploads are failing in pre-prod because S3 file upload endpoints require JWT authentication but the main page (form publish) routes don't, meaning the necessary fsd_user_token cookie doesn't get set beforehand.
This commit makes JWT authentication global, meaning that in a given environment, all endpoints will either be JWT authenticated or not. We can disable JWT auth in Dev, Test and UAT, resolving the weirdness we have observed.
0 commit comments