diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-09-06 17:25:17 +0100 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-09-06 17:25:17 +0100 |
commit | 489ccc1c600836fda8b66b783e1f510e67c3666d (patch) | |
tree | 7908a79da7ce62b64ff844360b65a258aa9b5841 /internal/eventutil | |
parent | 70cd9a902c84f15817b191999340d003ccbc41eb (diff) |
Stronger default power levels
Diffstat (limited to 'internal/eventutil')
-rw-r--r-- | internal/eventutil/eventcontent.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/eventutil/eventcontent.go b/internal/eventutil/eventcontent.go index 4ecb5fb5..e3c80f1d 100644 --- a/internal/eventutil/eventcontent.go +++ b/internal/eventutil/eventcontent.go @@ -53,6 +53,9 @@ func InitialPowerLevelsContent(roomCreator string) (c gomatrixserverlib.PowerLev "m.room.history_visibility": 100, "m.room.canonical_alias": 50, "m.room.avatar": 50, + "m.room.tombstone": 100, + "m.room.encryption": 100, + "m.room.server_acl": 100, } c.Users = map[string]int64{roomCreator: 100} return c |