setting account_user_ids to empty list on GET /account/edit (#966)

This commit is contained in:
steschuser 2021-08-05 19:41:28 +02:00 committed by GitHub
parent c4a9498898
commit 07c71fb0bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -441,6 +441,7 @@ def edit_account(account_name=None):
if request.method == 'GET':
if account_name is None:
return render_template('admin_edit_account.html',
account_user_ids=[],
users=users,
create=1)