diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-28 10:59:15 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-28 10:59:15 +0100 |
commit | d2bc5d6f29b894516190f24619baf19e216643b7 (patch) | |
tree | c9a952612510bdbf696f7be452e02e4920b76b52 /synapse/api/events/factory.py | |
parent | Fix typo in NullSource.get_pagination_rows. Remove unused import. (diff) | |
download | synapse-d2bc5d6f29b894516190f24619baf19e216643b7.tar.xz |
Create the correct events with the right configuration when creating a new room.
Diffstat (limited to 'synapse/api/events/factory.py')
-rw-r--r-- | synapse/api/events/factory.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/synapse/api/events/factory.py b/synapse/api/events/factory.py index c2cdcddf41..7c1259d617 100644 --- a/synapse/api/events/factory.py +++ b/synapse/api/events/factory.py @@ -16,6 +16,8 @@ from synapse.api.events.room import ( RoomTopicEvent, MessageEvent, RoomMemberEvent, FeedbackEvent, InviteJoinEvent, RoomConfigEvent, RoomNameEvent, GenericEvent, + RoomPowerLevelsEvent, RoomDefaultLevelEvent, RoomJoinRulesEvent, + RoomCreateEvent, ) from synapse.util.stringutils import random_string @@ -30,7 +32,11 @@ class EventFactory(object): RoomMemberEvent, FeedbackEvent, InviteJoinEvent, - RoomConfigEvent + RoomConfigEvent, + RoomPowerLevelsEvent, + RoomDefaultLevelEvent, + RoomJoinRulesEvent, + RoomCreateEvent, ] def __init__(self, hs): |