blacklisted -> blocked

This commit is contained in:
Girish Ramakrishnan
2024-05-23 09:52:05 +02:00
parent 92b6a7e335
commit 4229e9921c
3 changed files with 10 additions and 10 deletions

View File

@@ -1380,7 +1380,7 @@ async function install(data, auditSource) {
error = validateEnv(env);
if (error) throw error;
if (constants.DEMO && constants.DEMO_BLACKLISTED_APPS.includes(appStoreId)) throw new BoxError(BoxError.BAD_FIELD, 'This app is blacklisted in the demo');
if (constants.DEMO && constants.DEMO_BLOCKED_APPS.includes(appStoreId)) throw new BoxError(BoxError.BAD_FIELD, 'This app is blocked in the demo');
// sendmail is enabled by default
const enableMailbox = 'enableMailbox' in data ? data.enableMailbox : true;