0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-28 15:38:18 +02:00

Include the ts the notif was received at

This commit is contained in:
David Baker 2016-05-24 11:33:32 +01:00
parent b791a530da
commit 37b7e84620
2 changed files with 8 additions and 5 deletions

View file

@ -68,6 +68,7 @@ class NotificationsServlet(RestServlet):
"room_id": pa["room_id"],
"profile_tag": pa["profile_tag"],
"actions": pa["actions"],
"ts": pa["received_ts"],
"event": serialize_event(
notif_events[pa["event_id"]],
self.clock.time_msec(),

View file

@ -201,11 +201,13 @@ class EventPushActionsStore(SQLBaseStore):
else:
args = [user_id, limit]
sql = (
"SELECT event_id, room_id, stream_ordering, topological_ordering,"
" actions, profile_tag"
" FROM event_push_actions"
" WHERE user_id = ? %s"
" ORDER BY stream_ordering DESC"
"SELECT epa.event_id, epa.room_id,"
" epa.stream_ordering, epa.topological_ordering,"
" epa.actions, epa.profile_tag, e.received_ts"
" FROM event_push_actions epa, events e"
" WHERE epa.room_id = e.room_id AND epa.event_id = e.event_id"
" AND epa.user_id = ? %s"
" ORDER BY epa.stream_ordering DESC"
" LIMIT ?"
% (before_clause,)
)