exports.runQuery = function (matrixClient, room, userInput) { axios({ method: 'POST', url: `${config.fediverse.domain}/api/v1/statuses/${userInput}/pin`, headers: { Authorization: `Bearer ${fediverse_auth.access_token}` }, }).then((response) => { matrixClient.sendHtmlNotice(room.roomId, '', `Pinned:
${response.data.content}
`); }) .catch((e) => { matrixClient.sendHtmlNotice(room.roomId, '', `${e}`); }); };