renamed teams to microsoft teams; fixed grunt prettier error in onedrive

This commit is contained in:
Saulo Alves 2021-07-11 10:52:40 +02:00 committed by antelle
parent 98268f21c0
commit f8af64e45b
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
2 changed files with 6 additions and 2 deletions

View File

@ -43,7 +43,7 @@
"dropbox": "Dropbox",
"gdrive": "Google Drive",
"onedrive": "OneDrive",
"teams": "Teams",
"teams": "Microsoft Teams",
"menuAllItems": "All Items",
"menuColors": "Colors",
"menuTrash": "Trash",

View File

@ -229,7 +229,11 @@ class StorageOneDrive extends StorageBase {
} else if (Features.isLocal) {
({ id: clientId, secret: clientSecret, tenantId: tenant } = OneDriveApps.Local);
} else {
({ id: clientId, secret: clientSecret, tenantId: tenant } = OneDriveApps.Production);
({
id: clientId,
secret: clientSecret,
tenantId: tenant
} = OneDriveApps.Production);
}
}
tenant = tenant || 'common';