remove COMMUNITY_NAME in config.js

This commit is contained in:
ogerly 2022-08-18 10:42:19 +02:00
parent fed8701bda
commit 0bbc22e803
2 changed files with 0 additions and 9 deletions

View File

@ -4,10 +4,6 @@
<b-jumbotron bg-variant="info" text-variant="white" border-variant="dark"> <b-jumbotron bg-variant="info" text-variant="white" border-variant="dark">
<template #header>{{ $t('statistic.name') }}</template> <template #header>{{ $t('statistic.name') }}</template>
<template #lead>
{{ CONFIG.COMMUNITY_NAME }}
</template>
<hr class="my-4" /> <hr class="my-4" />
<div> <div>

View File

@ -32,10 +32,6 @@ const endpoints = {
WALLET_URL: process.env.WALLET_URL || 'http://localhost/login', WALLET_URL: process.env.WALLET_URL || 'http://localhost/login',
} }
const community = {
COMMUNITY_NAME: process.env.COMMUNITY_NAME || 'Gradido Entwicklung',
}
const debug = { const debug = {
DEBUG_DISABLE_AUTH: process.env.DEBUG_DISABLE_AUTH === 'true' || false, DEBUG_DISABLE_AUTH: process.env.DEBUG_DISABLE_AUTH === 'true' || false,
} }
@ -57,7 +53,6 @@ const CONFIG = {
...version, ...version,
...environment, ...environment,
...endpoints, ...endpoints,
...community,
...debug, ...debug,
} }