mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-24 18:45:52 +03:00
By default, only room ops can change the name and topic.
This commit is contained in:
parent
cf890e9d43
commit
10e7821461
1 changed files with 2 additions and 0 deletions
|
@ -133,6 +133,7 @@ class RoomCreationHandler(BaseRoomHandler):
|
|||
etype=RoomNameEvent.TYPE,
|
||||
room_id=room_id,
|
||||
user_id=user_id,
|
||||
required_power_level=5,
|
||||
content={"name": name},
|
||||
)
|
||||
|
||||
|
@ -144,6 +145,7 @@ class RoomCreationHandler(BaseRoomHandler):
|
|||
etype=RoomTopicEvent.TYPE,
|
||||
room_id=room_id,
|
||||
user_id=user_id,
|
||||
required_power_level=5,
|
||||
content={"topic": topic},
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue