Make the pad types displayed on the front page configurable

This commit is contained in:
yflory
2016-09-13 11:01:10 +02:00
parent 217e664d4c
commit 1e02e7b45b
4 changed files with 21 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
define(function() {
var config = {};
/* Select the buttons displayed on the main page to create new collaborative sessions
* Existing types : pad, code, poll, slide
*/
config.availablePadTypes = ['pad', 'code', 'poll'];
return config;
});