From 221ddffcfd38d101386fd356ba18f004a2d5c9aa Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andrej=20Rama=C5=A1euski?= <andrej@x2.cz>
Date: Mon, 14 Oct 2024 23:48:11 +0200
Subject: [PATCH] Korektnejsi prace s regiony

---
 .gitlab-ci.yml             | 2 +-
 lib/CF2022/Helpers/Auth.pm | 8 +++++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 956117e..7f8caf0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,7 @@ image: docker:latest
 
 variables:
   DOCKER_TLS_CERTDIR: "/certs"
-  IMAGE_VER: 0.21.2
+  IMAGE_VER: 0.21.3
 
 services:
   - docker:dind
diff --git a/lib/CF2022/Helpers/Auth.pm b/lib/CF2022/Helpers/Auth.pm
index 9957968..82c17bd 100644
--- a/lib/CF2022/Helpers/Auth.pm
+++ b/lib/CF2022/Helpers/Auth.pm
@@ -8,7 +8,7 @@ use feature 'signatures';
 no warnings qw{ experimental::signatures };
 
 use constant KEY_FORMAT => "-----BEGIN PUBLIC KEY-----\n%s\n-----END PUBLIC KEY-----";
-use constant REGIONS    => qr{^(cen|jhc|jhm|kvk|lbk|msk|olk|pak|pha|plk|stc|ulk|vys|zlk|khk):(f|regp)$};
+use constant REGIONS    => qr{^(jhc|jhm|kvk|lbk|msk|olk|pak|pha|plk|stc|ulk|vys|zlk|khk):(f|regp)$};
 
 sub register ( $class, $self, $conf) {
 
@@ -90,6 +90,12 @@ sub register ( $class, $self, $conf) {
                     role   => $role,
                 };
             }
+            elsif ( $group =~ /cen:regp/ ) {
+                return {
+                    region => 'Celostátní fórum',
+                    role   => 'regp',
+                };
+            }
         }
     });
 
-- 
GitLab