You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
419 B
JavaScript

"use strict";
const addCommonFields = require("../event-add-common-fields");
const mapMaybeRedacted = require("../map-maybe-redacted");
module.exports = function mapReactionEvent(event, _context) {
return addCommonFields({
type: "reaction",
user: event.sender,
... mapMaybeRedacted(event, () => ({
body: event.content["m.relates_to"].key,
reactionTo: event.content["m.relates_to"].event_id
}))
});
};