From 401a5294504effc0214fa52e072ae2e2e5f74f42 Mon Sep 17 00:00:00 2001
From: Laily Ajellu <l.ajellu@gmail.com>
Date: Wed, 24 Aug 2016 07:23:50 -0700
Subject: [PATCH] HTML5 - removes config.js and removes a package not needed
 anymore from .meteor/packages

---
 bigbluebutton-html5/.meteor/packages |  1 -
 bigbluebutton-html5/config.js        | 85 ----------------------------
 2 files changed, 86 deletions(-)
 delete mode 100755 bigbluebutton-html5/config.js

diff --git a/bigbluebutton-html5/.meteor/packages b/bigbluebutton-html5/.meteor/packages
index 8d65cbef09..a31f5196f4 100755
--- a/bigbluebutton-html5/.meteor/packages
+++ b/bigbluebutton-html5/.meteor/packages
@@ -4,7 +4,6 @@
 # but you can also edit it by hand.
 
 4commerce:env-settings
-mrt:redis@0.1.3
 standard-app-packages@1.0.9
 arunoda:npm@0.2.6
 amplify
diff --git a/bigbluebutton-html5/config.js b/bigbluebutton-html5/config.js
deleted file mode 100755
index 2c3b512295..0000000000
--- a/bigbluebutton-html5/config.js
+++ /dev/null
@@ -1,85 +0,0 @@
-// TODO: should be split on server and client side
-// // Global configurations file
-
-let clientConfig = {};
-
-// Default global variables
-
-clientConfig.appName = 'BigBlueButton HTML5 Client';
-
-clientConfig.bbbServerVersion = '1.0-beta';
-
-clientConfig.copyrightYear = '2015';
-
-clientConfig.html5ClientBuild = 'NNNN';
-
-clientConfig.defaultWelcomeMessage =
-  'Welcome to %%CONFNAME%%!\r\rFor help on using BigBlueButton see ' +
-  'these (short) <a href="event:http://www.bigbluebutton.org/content/videos"><u>tutorial ' +
-  'videos</u></a>.\r\rTo join the audio bridge click the gear icon (upper-right hand corner). ' +
-  ' Use a headset to avoid causing background noise for others.\r\r\r';
-
-const tempString = 'This server is running a build of ' +
-  "<a href='http://docs.bigbluebutton.org/1.0/10overview.html' target='_blank'><u>BigBlueButton";
-clientConfig.defaultWelcomeMessageFooter = `${tempString} ` +
-  `${clientConfig.bbbServerVersion}</u></a>.`;
-
-clientConfig.maxUsernameLength = 30;
-
-clientConfig.maxChatLength = 140;
-
-clientConfig.lockOnJoin = true;
-
-//// Application configurations
-
-clientConfig.app = {};
-
-//default font sizes for mobile / desktop
-
-clientConfig.app.mobileFont = 16;
-
-clientConfig.app.desktopFont = 14;
-
-// Will offer the user to join the audio when entering the meeting
-
-clientConfig.app.autoJoinAudio = false;
-
-clientConfig.app.listenOnly = false;
-
-clientConfig.app.skipCheck = false;
-
-// Flag for HTTPS. True by default
-clientConfig.app.httpsConnection = true;
-
-// The amount of time the client will wait before making another call to
-// successfully hangup the WebRTC conference call
-
-clientConfig.media = {};
-
-clientConfig.media.WebRTCHangupRetryInterval = 2000;
-
-// specifies whether to use SIP.js for audio over mod_verto
-clientConfig.media.useSIPAudio = true;
-
-// Configs for redis
-const redisConfig = {
-  host: '127.0.0.1',
-  post: '6379',
-  timeout: 5000,
-  channels: {
-    fromBBBApps: 'bigbluebutton:from-bbb-apps:*',
-    toBBBApps: {
-      pattern: 'bigbluebutton:to-bbb-apps:*',
-      chat: 'bigbluebutton:to-bbb-apps:chat',
-      captions: 'bigbluebutton:to-bbb-apps:caption',
-      meeting: 'bigbluebutton:to-bbb-apps:meeting',
-      presentation: 'bigbluebutton:to-bbb-apps:presentation',
-      users: 'bigbluebutton:to-bbb-apps:users',
-      voice: 'bigbluebutton:to-bbb-apps:voice',
-      whiteboard: 'bigbluebutton:to-bbb-apps:whiteboard',
-      polling: 'bigbluebutton:to-bbb-apps:polling',
-    },
-  },
-};
-
-export { clientConfig, redisConfig };
-- 
GitLab