summaryrefslogtreecommitdiff
path: root/src/config.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-02-01 00:12:49 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-02-01 00:12:49 +0900
commit2d78329860795c8a2a4f2cd4eb8cd09945a93294 (patch)
tree1750be84cdce117b1508b721ab19d59cd760718e /src/config.ts
parentFix: Add missing semicolon (diff)
downloadsharkey-2d78329860795c8a2a4f2cd4eb8cd09945a93294.tar.gz
sharkey-2d78329860795c8a2a4f2cd4eb8cd09945a93294.tar.bz2
sharkey-2d78329860795c8a2a4f2cd4eb8cd09945a93294.zip
<WIP> #52
Diffstat (limited to 'src/config.ts')
-rw-r--r--src/config.ts8
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;
+ };
}
/**