aboutsummaryrefslogtreecommitdiff
path: root/plugins/VNLib.Plugins.Essentials.Accounts/src/AccountsEntryPoint.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-02-21 21:44:56 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-02-21 21:44:56 -0500
commit7f3067b8fc4416d46af9b8b005a18a71770c98fe (patch)
tree96cbf60776b1fb1ed591d7a4b07360b8af1df4fa /plugins/VNLib.Plugins.Essentials.Accounts/src/AccountsEntryPoint.cs
parenteb9752ab262522271ccaf1ff127658b7202289a4 (diff)
user-creation api update, and fix user-privilege missing update
Diffstat (limited to 'plugins/VNLib.Plugins.Essentials.Accounts/src/AccountsEntryPoint.cs')
-rw-r--r--plugins/VNLib.Plugins.Essentials.Accounts/src/AccountsEntryPoint.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/VNLib.Plugins.Essentials.Accounts/src/AccountsEntryPoint.cs b/plugins/VNLib.Plugins.Essentials.Accounts/src/AccountsEntryPoint.cs
index bd191a1..318f3ce 100644
--- a/plugins/VNLib.Plugins.Essentials.Accounts/src/AccountsEntryPoint.cs
+++ b/plugins/VNLib.Plugins.Essentials.Accounts/src/AccountsEntryPoint.cs
@@ -175,7 +175,7 @@ Commands:
//Create the user creation request
UserCreationRequest creation = new()
{
- EmailAddress = username,
+ Username = username,
InitialStatus = UserStatus.Active,
Privileges = privLevel,
Password = PrivateString.ToPrivateString(password, false)