access-control-allow-origin * on API

https://discord.com/channels/958942151817977906/1007059292404338920/1014473119257333842
This commit is contained in:
dangered wolf 2022-08-31 06:07:10 -04:00
parent fd9daf6bd1
commit 71b2f7aec0
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 5 additions and 1 deletions

View file

@ -59,6 +59,10 @@ export const Constants = {
'x-powered-by': '🏳️‍⚧️ Trans Rights',
'cache-control': 'max-age=3600' // Can be overriden in some cases, like poll tweets
},
API_RESPONSE_HEADERS: {
'access-control-allow-origin': '*',
'content-type': 'application/json'
},
POLL_TWEET_CACHE: 'max-age=60',
DEFAULT_COLOR: '#10A3FF',
ROBOTS_TXT: `User-agent: *

View file

@ -37,7 +37,7 @@ export const handleStatus = async (
if (flags?.api) {
return {
response: new Response(JSON.stringify(api), {
headers: { ...Constants.RESPONSE_HEADERS, 'content-type': 'application/json' },
headers: { ...Constants.RESPONSE_HEADERS, ...Constants.API_RESPONSE_HEADERS },
status: api.code
})
};