From ae0f437e2c6cab0f129315184996ac2c73f0f44e Mon Sep 17 00:00:00 2001 From: Polianin Nikita Date: Tue, 27 Aug 2024 22:58:05 +0300 Subject: [PATCH] fix: remove Regex --- Endpoint/Controllers/Configuration/SetupController.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Endpoint/Controllers/Configuration/SetupController.cs b/Endpoint/Controllers/Configuration/SetupController.cs index 022bf0b..153af04 100644 --- a/Endpoint/Controllers/Configuration/SetupController.cs +++ b/Endpoint/Controllers/Configuration/SetupController.cs @@ -341,10 +341,4 @@ public class SetupController( return true; } - - [GeneratedRegex("[A-Z]+")] - private static partial Regex PasswordExistUpperLetter(); - - [GeneratedRegex("[!@#$%^&*]+")] - private static partial Regex PasswordExistSpecialSymbol(); } \ No newline at end of file