From 03252b99b27f87675deab391fe8373e0be055d6f Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Thu, 12 Jun 2014 21:34:18 +0200 Subject: [PATCH] Add new settings for etherpad --- conf/vroom.conf.sample | 5 +++++ public/vroom.pl | 2 ++ 2 files changed, 7 insertions(+) diff --git a/conf/vroom.conf.sample b/conf/vroom.conf.sample index ba7f5a4..be163b8 100644 --- a/conf/vroom.conf.sample +++ b/conf/vroom.conf.sample @@ -39,6 +39,11 @@ logLevel => 'info', # ID of the Chrome extension for screen sharing chromeExtensionId => 'ecicdpoejfllflombfanbhfpgcimjddn', +# For etherpad integration, set the etherpad base url +# and API Key +etherpadUri => '', +etherpadApiKey => '', + # Various sendmail => '/sbin/sendmail' }; diff --git a/public/vroom.pl b/public/vroom.pl index 6b56262..74b3bf0 100755 --- a/public/vroom.pl +++ b/public/vroom.pl @@ -120,6 +120,8 @@ our $config = plugin Config => { commonRoomNames => [ qw() ], logLevel => 'info', chromeExtensionId => 'ecicdpoejfllflombfanbhfpgcimjddn', + etherpadUri => '', + etherpadApiKey => '', sendmail => '/sbin/sendmail' } };