mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
access-control-allow-origin * on API
https://discord.com/channels/958942151817977906/1007059292404338920/1014473119257333842
This commit is contained in:
parent
fd9daf6bd1
commit
71b2f7aec0
2 changed files with 5 additions and 1 deletions
|
@ -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: *
|
||||
|
|
|
@ -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
|
||||
})
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue