Browse Source

Adds the displayName if available to the conference options on create.

master
damencho 8 years ago
parent
commit
654c5c44f4
2 changed files with 13 additions and 0 deletions
  1. 6
    0
      conference.js
  2. 7
    0
      config.js

+ 6
- 0
conference.js View File

1291
                     : 'colibri';
1291
                     : 'colibri';
1292
         }
1292
         }
1293
 
1293
 
1294
+        const nick = APP.settings.getDisplayName();
1295
+
1296
+        if (nick) {
1297
+            options.displayName = nick;
1298
+        }
1299
+
1294
         return options;
1300
         return options;
1295
     },
1301
     },
1296
 
1302
 

+ 7
- 0
config.js View File

233
     // callStatsID: '',
233
     // callStatsID: '',
234
     // callStatsSecret: '',
234
     // callStatsSecret: '',
235
 
235
 
236
+    // enables callstatsUsername to be reported as statsId and used
237
+    // by callstats as repoted remote id
238
+    // enableStatsID: false
239
+
240
+    // enables sending participants display name to callstats
241
+    // enableDisplayNameInStats: false
242
+
236
 
243
 
237
     // Privacy
244
     // Privacy
238
     //
245
     //

Loading…
Cancel
Save