Make feedback table also store sender.

This commit is contained in:
Erik Johnston 2014-08-13 17:43:34 +01:00
parent 336987bb8d
commit beaf4384d9
2 changed files with 3 additions and 1 deletions

View file

@ -28,6 +28,7 @@ class FeedbackStore(SQLBaseStore):
"feedback_type": event.feedback_type,
"room_id": event.room_id,
"target_event_id": event.target_event,
"sender": event.user_id,
})
@defer.inlineCallback