fix missing change in backend and fix lint in dht-node

This commit is contained in:
einhornimmond 2025-01-20 17:15:55 +01:00
parent 7fafb546b5
commit 471949e1b1
2 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,7 @@ export class ContributionLink {
this.cycle = contributionLink.cycle
this.maxPerCycle = contributionLink.maxPerCycle
this.code = contributionLink.code
this.link = CONFIG.COMMUNITY_REDEEM_CONTRIBUTION_URL.replace(/{code}/g, this.code)
this.link = CONFIG.COMMUNITY_REDEEM_CONTRIBUTION_URL + this.code
}
@Field(() => Int)

View File

@ -1,7 +1,6 @@
/* eslint-disable n/no-process-env */
import { latestDbVersion } from '@dbTools/config/detectLastDBVersion'
import dotenv from 'dotenv'
import { validate } from 'gradido-config'
import { schema } from './schema'