-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.js
36 lines (36 loc) · 1.15 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
exports.settings = {
"statusMessage": "greetings",
"keepAlive": true,
"filter": /You can apply a command[\s\S]+for more details./mg,
"xmpp": {
jid: 'cinchbot@jabb3r.org',
host: 'jabber.hot-chilli.net',
password: process.env.bot_password,
reconnect: true
},
"slackWebhook" : {
host: 'hooks.slack.com',
path: process.env.slack_webhook_path,
method: 'POST'
},
"slackPayloads" : [
{
channel : '#telephony-general',
username : 'youtrack',
icon_url : 'http://blog.jetbrains.com/wp-content/uploads/2014/01/YouTrack-logo-200x200-150x150.jpg',
filter : 'TELEPHONY-'
},
{
channel : '#support',
username : 'youtrack',
icon_url : 'http://blog.jetbrains.com/wp-content/uploads/2014/01/YouTrack-logo-200x200-150x150.jpg',
filter : 'SUPPORT-'
},
{
channel : '#ams-general',
username : 'youtrack',
icon_url : 'http://blog.jetbrains.com/wp-content/uploads/2014/01/YouTrack-logo-200x200-150x150.jpg',
filter : 'CC-'
},
]
};