Allow new users to be registered via the admin API even if the monthly active user limit has been reached (#7263)

This commit is contained in:
Dirk Klimpel 2020-06-05 14:08:49 +02:00 committed by GitHub
parent 2970ce8367
commit 908f9e2d24
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 172 additions and 16 deletions

View file

@ -270,6 +270,7 @@ class UserRestServletV2(RestServlet):
admin=bool(admin),
default_display_name=displayname,
user_type=user_type,
by_admin=True,
)
if "threepids" in body:
@ -432,6 +433,7 @@ class UserRegisterServlet(RestServlet):
password_hash=password_hash,
admin=bool(admin),
user_type=user_type,
by_admin=True,
)
result = await register._create_registration_details(user_id, body)