From c798e4c4014d0cb7d46ddad499fb78da465ebbb0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C3=ABl=20Minelli?= <git@minelli.me>
Date: Wed, 13 Mar 2024 12:12:02 +0100
Subject: [PATCH] Config => Add cliPreAlphaReleasePage

---
 NodeApp/src/config/Config.ts | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/NodeApp/src/config/Config.ts b/NodeApp/src/config/Config.ts
index 375f0cf..615a369 100644
--- a/NodeApp/src/config/Config.ts
+++ b/NodeApp/src/config/Config.ts
@@ -10,6 +10,7 @@ class Config {
 
     public readonly gitlab: {
         cliReleasePage: string
+        cliPreAlphaReleasePage: string
     };
 
     public readonly login: {
@@ -42,7 +43,8 @@ class Config {
         this.versionUpdateInformationPeriodHours = Number(process.env.VERSION_UPDATE_INFORMATION_PERIOD_HOURS || 24);
 
         this.gitlab = {
-            cliReleasePage: process.env.GITLAB_CLI_RELEASE_PAGE || ''
+            cliReleasePage        : process.env.GITLAB_CLI_RELEASE_PAGE || '',
+            cliPreAlphaReleasePage: process.env.GITLAB_CLI_PREALPHA_RELEASE_PAGE || ''
         };
 
         this.login = {
-- 
GitLab