delete unused variable

This commit is contained in:
OxSaitama 2023-09-26 15:46:07 +02:00
parent cbbd11e5e4
commit 9572207133

View File

@ -100,9 +100,6 @@ export class BackendVariables {
@IsNotEmpty() @IsNotEmpty()
public readonly DOCAPOST_CONNECT_PROCESS_ID!: string; public readonly DOCAPOST_CONNECT_PROCESS_ID!: string;
@IsNotEmpty()
public readonly BACK_API_HOST!: string;
@IsNotEmpty() @IsNotEmpty()
public readonly DOCAPOST_APP_ID!: string; public readonly DOCAPOST_APP_ID!: string;
@ -143,7 +140,6 @@ export class BackendVariables {
this.DOCAPOST_VERSION = process.env["DOCAPOST_VERSION"]!; this.DOCAPOST_VERSION = process.env["DOCAPOST_VERSION"]!;
this.DOCAPOST_DOCUMENT_PROCESS_ID = process.env["DOCAPOST_DOCUMENT_PROCESS_ID"]!; this.DOCAPOST_DOCUMENT_PROCESS_ID = process.env["DOCAPOST_DOCUMENT_PROCESS_ID"]!;
this.DOCAPOST_CONNECT_PROCESS_ID = process.env["DOCAPOST_CONNECT_PROCESS_ID"]!; this.DOCAPOST_CONNECT_PROCESS_ID = process.env["DOCAPOST_CONNECT_PROCESS_ID"]!;
this.BACK_API_HOST = process.env["BACK_API_HOST"]!;
this.DOCAPOST_APP_ID = process.env["DOCAPOST_APP_ID"]!; this.DOCAPOST_APP_ID = process.env["DOCAPOST_APP_ID"]!;
this.DOCAPOST_APP_PASSWORD = process.env["DOCAPOST_APP_PASSWORD"]!; this.DOCAPOST_APP_PASSWORD = process.env["DOCAPOST_APP_PASSWORD"]!;