diff options
Diffstat (limited to 'src/config.ts')
| -rw-r--r-- | src/config.ts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/config.ts b/src/config.ts index 2b61bb89a5..e63e3c05ae 100644 --- a/src/config.ts +++ b/src/config.ts @@ -56,11 +56,15 @@ interface ISource { siteKey: string; secretKey: string; }; - accesslog: string; - twitter: { + accesslog?: string; + twitter?: { consumer_key: string; consumer_secret: string; }; + github_bot?: { + hook_secret: string; + bot_token: string; + }; } /** |