diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-10-03 23:38:53 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-10-03 23:38:53 +1100 |
commit | 69ff9c944c90d88a84a3f34165c90894c0b0c865 (patch) | |
tree | ef532794df1992f9b0b7e83c89bd703b46e0431b /src/util/entities | |
parent | Make imagor optional (diff) | |
download | server-69ff9c944c90d88a84a3f34165c90894c0b0c865.tar.xz |
Twitter embeds
Diffstat (limited to 'src/util/entities')
-rw-r--r-- | src/util/entities/Config.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util/entities/Config.ts b/src/util/entities/Config.ts index 42006fc9..2b75a049 100644 --- a/src/util/entities/Config.ts +++ b/src/util/entities/Config.ts @@ -209,6 +209,9 @@ export interface ConfigValue { traceSampleRate: number; environment: string; }; + external: { + twitter: string | null; + } } export const DefaultConfigOptions: ConfigValue = { @@ -418,4 +421,7 @@ export const DefaultConfigOptions: ConfigValue = { traceSampleRate: 1.0, environment: hostname(), }, + external: { + twitter: null, + } }; |