Compare commits

...

2 Commits

Author SHA1 Message Date
Slavi Pantaleev
291e66fddf
Merge pull request #3602 from darkdecoy/missing-semicolon
Update registering-users.md
2024-10-15 07:53:09 +03:00
Dark Decoy
41186b0771
Update registering-users.md 2024-10-14 18:47:59 +00:00

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: