By default, only room ops can change the name and topic.

paul/schema_breaking_changes
Erik Johnston 2014-09-02 11:09:43 +01:00
parent cf890e9d43
commit 10e7821461
1 changed files with 2 additions and 0 deletions

View File

@ -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},
)