Merge pull request #3602 from darkdecoy/missing-semicolon

Update registering-users.md
This commit is contained in:
Slavi Pantaleev 2024-10-15 07:53:09 +03:00 committed by GitHub
commit 291e66fddf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -71,7 +71,7 @@ If you're opening up registrations publicly like this, you might also wish to [c
To change the admin privileges for a user, you need to run an SQL query like this against the `synapse` database: To change the admin privileges for a user, you need to run an SQL query like this against the `synapse` database:
```sql ```sql
UPDATE users SET admin=ADMIN_VALUE WHERE name = '@USER:DOMAIN' UPDATE users SET admin=ADMIN_VALUE WHERE name = '@USER:DOMAIN';
``` ```
where: where: