From 0316fc948dd77b91b0ccf508826f66a175cb1e83 Mon Sep 17 00:00:00 2001 From: vnugent Date: Sun, 5 Nov 2023 21:22:21 -0500 Subject: user/acc updates and fix social oauth --- .../src/AccountValidations.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/VNLib.Plugins.Essentials.Accounts.Registration/src/AccountValidations.cs') diff --git a/plugins/VNLib.Plugins.Essentials.Accounts.Registration/src/AccountValidations.cs b/plugins/VNLib.Plugins.Essentials.Accounts.Registration/src/AccountValidations.cs index b84728b..3292e6b 100644 --- a/plugins/VNLib.Plugins.Essentials.Accounts.Registration/src/AccountValidations.cs +++ b/plugins/VNLib.Plugins.Essentials.Accounts.Registration/src/AccountValidations.cs @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Vaughn Nugent +* Copyright (c) 2023 Vaughn Nugent * * Library: VNLib * Package: VNLib.Plugins.Essentials.Accounts.Registration @@ -34,7 +34,7 @@ namespace VNLib.Plugins.Essentials.Accounts.Registration /// /// Central password requirement validator /// - public static IValidator PasswordValidator { get; } = GetPassVal(); + public static IValidator PasswordValidator { get; } = GetPassVal(); public static IValidator AccountDataValidator { get; } = GetAcVal(); @@ -43,9 +43,9 @@ namespace VNLib.Plugins.Essentials.Accounts.Registration /// public static IValidator RegRequestValidator { get; } = GetRequestValidator(); - static IValidator GetPassVal() + static IValidator GetPassVal() { - InlineValidator passVal = new(); + InlineValidator passVal = new(); passVal.RuleFor(static password => password) .NotEmpty() -- cgit