summary refs log tree commit diff
path: root/tests/rest/admin/test_username_available.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Correctly mention previous copyright (#16820)Erik Johnston2024-01-231-0/+1
| | | | | During the migration the automated script to update the copyright headers accidentally got rid of some of the existing copyright lines. Reinstate them.
* Update license headersPatrick Cloke2023-11-211-10/+16
|
* Bump mypy-zope & mypy. (#16188)Patrick Cloke2023-08-291-1/+1
|
* Add final type hint to tests.unittest. (#15072)Patrick Cloke2023-02-141-4/+11
| | | | Adds a return type to HomeServerTestCase.make_homeserver and deal with any variables which are no longer Any.
* Use literals in place of `HTTPStatus` constants in tests (#13488)Dirk Klimpel2022-08-101-9/+2
| | | | | | | | | * Use literals in place of `HTTPStatus` constants in tests * newsfile * code style * code style
* Use literals in place of `HTTPStatus` constants in tests (#13469)Dirk Klimpel2022-08-081-3/+3
|
* Add type hints to `tests/rest/admin` (#11851)Dirk Klimpel2022-01-311-6/+10
|
* Convert status codes to `HTTPStatus` in `tests.rest.admin` (#11455)Dirk Klimpel2021-11-301-5/+15
|
* Flatten the synapse.rest.client package (#10600)reivilibre2021-08-171-1/+1
|
* Add an admin API to check if a username is available (#10578)Will Hunt2021-08-171-0/+62
This adds a new API GET /_synapse/admin/v1/username_available?username=foo to check if a username is available. It is the counterpart to https://matrix.org/docs/spec/client_server/r0.6.0#get-matrix-client-r0-register-available, except that it works even if registration is disabled.