api: Do not require short_name to create user.

When you post to /json/users, we no longer
require or look at the short_name parameter,
since we don't use it in any meaningful way.

An upcoming commit will eliminate it from the
database.
This commit is contained in:
Steve Howell
2020-07-16 21:56:34 +00:00
committed by Tim Abbott
parent b375581f58
commit c60f4236a9
8 changed files with 21 additions and 21 deletions

View File

@@ -153,7 +153,6 @@ def create_user(client: Client) -> None:
'email': 'newbie@zulip.com',
'password': 'temp',
'full_name': 'New User',
'short_name': 'newbie',
}
result = client.create_user(request)
# {code_example|end}