diff options
author | Ike | 2019-10-25 21:24:49 +0200 |
---|---|---|
committer | Ike | 2019-10-25 21:25:09 +0200 |
commit | 238be9e56db3b06b49f46d059909de0247b6d5ed (patch) | |
tree | 98b1142b00322420a01a41cef9e40a25e6a9003c /configs | |
parent | dffd7ec9dd715ff084b4e168df5f712fff06bf0d (diff) |
Sonoj2019: Configure embedded webchat
Diffstat (limited to 'configs')
-rwxr-xr-x | configs/conferences/sonoj2019/config.php | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/configs/conferences/sonoj2019/config.php b/configs/conferences/sonoj2019/config.php index aab1685..46b395c 100755 --- a/configs/conferences/sonoj2019/config.php +++ b/configs/conferences/sonoj2019/config.php @@ -326,10 +326,10 @@ $CONFIG['ROOMS'] = array( * Der globale $CONFIG['IRC']-Block muss trotzdem existieren, * da sonst überhaupt kein IRC-Link erzeugt wird. (ggf. einfach `= true` setzen) */ - 'IRC_CONFIG' => array( - 'DISPLAY' => '#sonoj @ freenode', - 'URL' => 'ircs://chat.freenode.net:6697/sonoj', - ), + //'IRC_CONFIG' => array( + // 'DISPLAY' => '#sonoj @ freenode', + // 'URL' => 'ircs://chat.freenode.net:6697/sonoj', + //), /** * Twitter-Link aktivieren (boolean) @@ -358,6 +358,8 @@ $CONFIG['ROOMS'] = array( // 'DISPLAY' => '#fossgis2016 @ twitter', // 'TEXT' => '#fossgis2016', // ), + + 'WEBCHAT' => true, ), ); @@ -434,5 +436,11 @@ $CONFIG['TWITTER'] = array( 'TEXT' => '#sonoj2019', ); +$CONFIG['IRC'] = array( + 'DISPLAY' => '#sonoj @ freenode', + 'URL' => 'ircs://chat.freenode.net:6697/sonoj', +); +$CONFIG['WEBCHAT_URL'] = 'https://sonoj.org/chat'; + return $CONFIG; |