From 71b2f7aec08e104c0f2478c78058225bd8d74341 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Wed, 31 Aug 2022 06:07:10 -0400 Subject: [PATCH] access-control-allow-origin * on API https://discord.com/channels/958942151817977906/1007059292404338920/1014473119257333842 --- src/constants.ts | 4 ++++ src/status.ts | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/constants.ts b/src/constants.ts index 5d89e05..ebe8d14 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -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: * diff --git a/src/status.ts b/src/status.ts index a0d27e6..dcec5ae 100644 --- a/src/status.ts +++ b/src/status.ts @@ -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 }) };