From a34f3dc640bc69a00e79cf73db0850f2ca172743 Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Thu, 10 Jun 2021 15:52:32 -0700 Subject: [PATCH] corrected error with AddUsers A state --- help.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help.md b/help.md index e561bd7..a0b7202 100644 --- a/help.md +++ b/help.md @@ -39,7 +39,7 @@ # User Management | Name | Path | Method | A | Description | | :----------: | :------------------------------------- | :----: | :---: | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| AddUser | /user/{name} | POST | true | registers a user with the name `{name}`, balance of 0 and a password of the password supplied in the body | +| AddUser | /user/{name} | POST | false | registers a user with the name `{name}`, balance of 0 and a password of the password supplied in the body | | AdminAddUser | /admin/user/{name}?init_bal={init_bal} | POST | true | if the password supplied in the header matches the admin password, then it registers a user with the name `{name}`, balance of `init_bal` and a password supplied by the body of the request | | DelUser | /user/{name} | DELETE | true | if the password supplied in the header matches the user `{name}`'s password, then the user is deleted | | AdminDelUser | /admin/user/{name} | DELETE | true | if the password supplied in the header matches the admin password, then the user is deleted | \ No newline at end of file