From 03f3226ea055dca3565bb859437624ef04a236fd Mon Sep 17 00:00:00 2001 From: vnugent Date: Thu, 9 Mar 2023 01:48:39 -0500 Subject: Omega cache, session, and account provider complete overhaul --- .../src/Validators/LoginMessageValidation.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/VNLib.Plugins.Essentials.Accounts/src/Validators/LoginMessageValidation.cs') diff --git a/plugins/VNLib.Plugins.Essentials.Accounts/src/Validators/LoginMessageValidation.cs b/plugins/VNLib.Plugins.Essentials.Accounts/src/Validators/LoginMessageValidation.cs index 6d96695..dbb778f 100644 --- a/plugins/VNLib.Plugins.Essentials.Accounts/src/Validators/LoginMessageValidation.cs +++ b/plugins/VNLib.Plugins.Essentials.Accounts/src/Validators/LoginMessageValidation.cs @@ -1,5 +1,5 @@ /* -* Copyright (c) 2022 Vaughn Nugent +* Copyright (c) 2023 Vaughn Nugent * * Library: VNLib * Package: VNLib.Plugins.Essentials.Accounts @@ -35,7 +35,7 @@ namespace VNLib.Plugins.Essentials.Accounts.Validators { public LoginMessageValidation() { - RuleFor(static t => t.ClientID) + RuleFor(static t => t.ClientId) .Length(min: 10, max: 100) .WithMessage(errorMessage: "Your browser is not sending required security information"); -- cgit