Fixed test & redirect

This commit is contained in:
dangered wolf 2022-08-11 17:51:55 -04:00
parent c333ccbdc9
commit cc6b59d084
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
6 changed files with 8 additions and 1 deletions

View file

@ -5,6 +5,7 @@ MOSAIC_DOMAIN_LIST = "mosaic.fxtwitter.com"
API_HOST_LIST = "api.fxtwitter.com,api-canary.fxtwitter.com"
HOST_URL = "https://fxtwitter.com"
REDIRECT_URL = "https://github.com/dangeredwolf/FixTweet"
EMBED_URL = "https://discord.gg/6CQTTTkGaH"
SENTRY_DSN = "https://aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa@aaaaaa.ingest.sentry.io/69"
SENTRY_AUTH_TOKEN = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
SENTRY_ORG = "dangeredwolf"

View file

@ -11,6 +11,7 @@
"API_HOST_LIST": "api.fxtwitter.com",
"HOST_URL": "https://fxtwitter.com",
"REDIRECT_URL": "https://github.com/dangeredwolf/FixTweet",
"EMBED_URL": "https://discord.gg/6CQTTTkGaH",
"RELEASE_NAME": "fixtweet-test",
"TEST": true
},

View file

@ -7,6 +7,7 @@ export const Constants = {
MOSAIC_DOMAIN_LIST: MOSAIC_DOMAIN_LIST.split(','),
API_HOST_LIST: API_HOST_LIST.split(','),
HOST_URL: HOST_URL,
EMBED_URL: EMBED_URL,
REDIRECT_URL: REDIRECT_URL,
RELEASE_NAME: RELEASE_NAME,
API_DOCS_URL: `https://github.com/dangeredwolf/FixTweet/wiki/API-Home`,

1
src/env.d.ts vendored
View file

@ -2,6 +2,7 @@ declare const BRANDING_NAME: string;
declare const BRANDING_NAME_DISCORD: string;
declare const DIRECT_MEDIA_DOMAINS: string;
declare const HOST_URL: string;
declare const EMBED_URL: string;
declare const REDIRECT_URL: string;
declare const MOSAIC_DOMAIN_LIST: string;
declare const API_HOST_LIST: string;

View file

@ -119,7 +119,7 @@ router.get('/owoembed', async (request: Request) => {
author
)}/status/${encodeURIComponent(status)}`,
provider_name: Constants.BRANDING_NAME_DISCORD,
provider_url: Constants.REDIRECT_URL,
provider_url: Constants.EMBED_URL,
title: Strings.DEFAULT_AUTHOR_TEXT,
type: 'link',
version: '1.0'

View file

@ -33,6 +33,9 @@ let plugins = [
new webpack.DefinePlugin({
REDIRECT_URL: `'${process.env.REDIRECT_URL}'`
}),
new webpack.DefinePlugin({
EMBED_URL: `'${process.env.EMBED_URL}'`
}),
new webpack.DefinePlugin({
MOSAIC_DOMAIN_LIST: `'${process.env.MOSAIC_DOMAIN_LIST}'`
}),