Use the correct app name for teams
This commit is contained in:
parent
a1e0722a09
commit
0b542f6be8
@ -2781,7 +2781,7 @@ define([
|
|||||||
var i = 0;
|
var i = 0;
|
||||||
var types = AppConfig.availablePadTypes.filter(function (p) {
|
var types = AppConfig.availablePadTypes.filter(function (p) {
|
||||||
if (p === 'drive') { return; }
|
if (p === 'drive') { return; }
|
||||||
if (p === 'team') { return; }
|
if (p === 'teams') { return; }
|
||||||
if (p === 'contacts') { return; }
|
if (p === 'contacts') { return; }
|
||||||
if (p === 'todo') { return; }
|
if (p === 'todo') { return; }
|
||||||
if (p === 'file') { return; }
|
if (p === 'file') { return; }
|
||||||
|
|||||||
@ -2263,7 +2263,7 @@ define([
|
|||||||
var arr = [];
|
var arr = [];
|
||||||
AppConfig.availablePadTypes.forEach(function (type) {
|
AppConfig.availablePadTypes.forEach(function (type) {
|
||||||
if (type === 'drive') { return; }
|
if (type === 'drive') { return; }
|
||||||
if (type === 'team') { return; }
|
if (type === 'teams') { return; }
|
||||||
if (type === 'contacts') { return; }
|
if (type === 'contacts') { return; }
|
||||||
if (type === 'todo') { return; }
|
if (type === 'todo') { return; }
|
||||||
if (type === 'file') { return; }
|
if (type === 'file') { return; }
|
||||||
|
|||||||
@ -922,7 +922,6 @@ MessengerUI, Messages) {
|
|||||||
var pads_options = [];
|
var pads_options = [];
|
||||||
Config.availablePadTypes.forEach(function (p) {
|
Config.availablePadTypes.forEach(function (p) {
|
||||||
if (p === 'drive') { return; }
|
if (p === 'drive') { return; }
|
||||||
if (p === 'teams') { return; }
|
|
||||||
if (!Common.isLoggedIn() && Config.registeredOnlyTypes &&
|
if (!Common.isLoggedIn() && Config.registeredOnlyTypes &&
|
||||||
Config.registeredOnlyTypes.indexOf(p) !== -1) { return; }
|
Config.registeredOnlyTypes.indexOf(p) !== -1) { return; }
|
||||||
pads_options.push({
|
pads_options.push({
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user