From 1ef6c8fd8b961a9613987e4b3dc0820cf623ab18 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Mon, 6 Mar 2023 10:41:37 +0100 Subject: [PATCH] userid format: clarify that this is the full name@realm in description as it recently confused a user in the forum. Signed-off-by: Thomas Lamprecht --- src/PVE/Auth/Plugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/Auth/Plugin.pm b/src/PVE/Auth/Plugin.pm index bae9fb9..1b03236 100755 --- a/src/PVE/Auth/Plugin.pm +++ b/src/PVE/Auth/Plugin.pm @@ -127,7 +127,7 @@ sub verify_username { } PVE::JSONSchema::register_standard_option('userid', { - description => "User ID", + description => "Full User ID, in the `name\@realm` format.", type => 'string', format => 'pve-userid', maxLength => 64, });