mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 19:10:54 +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',
|
'x-powered-by': '🏳️⚧️ Trans Rights',
|
||||||
'cache-control': 'max-age=3600' // Can be overriden in some cases, like poll tweets
|
'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',
|
POLL_TWEET_CACHE: 'max-age=60',
|
||||||
DEFAULT_COLOR: '#10A3FF',
|
DEFAULT_COLOR: '#10A3FF',
|
||||||
ROBOTS_TXT: `User-agent: *
|
ROBOTS_TXT: `User-agent: *
|
||||||
|
|
|
@ -37,7 +37,7 @@ export const handleStatus = async (
|
||||||
if (flags?.api) {
|
if (flags?.api) {
|
||||||
return {
|
return {
|
||||||
response: new Response(JSON.stringify(api), {
|
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
|
status: api.code
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue