refactor: convert config variables to upper case

This commit is contained in:
Elias Schneider
2022-12-05 16:53:52 +01:00
parent d4a0f1a4f1
commit 0499548dd3
20 changed files with 54 additions and 51 deletions

View File

@@ -63,7 +63,7 @@ export class ConfigService {
async finishSetup() {
return await this.prisma.config.update({
where: { key: "setupFinished" },
where: { key: "SETUP_FINISHED" },
data: { value: "true" },
});
}