2021-02-14 10:57:35 +03:00
|
|
|
exports.runQuery = function (roomId, event, userInput) {
|
2019-09-06 03:36:26 +03:00
|
|
|
axios({
|
|
|
|
method: 'POST',
|
2021-02-01 11:58:59 +03:00
|
|
|
url: `${config.fediverse.domain}/api/v1/statuses/${userInput}/pin`,
|
2021-02-14 10:57:35 +03:00
|
|
|
headers: { Authorization: `Bearer ${fediverse.auth.access_token}` },
|
2019-09-06 03:36:26 +03:00
|
|
|
})
|
2021-02-14 10:57:35 +03:00
|
|
|
.then(() => {
|
|
|
|
matrix.utils.addReact(event, '✅');
|
|
|
|
})
|
2019-09-06 03:36:26 +03:00
|
|
|
.catch((e) => {
|
2021-02-14 10:57:35 +03:00
|
|
|
matrix.utils.addReact(event, '❌');
|
|
|
|
matrix.utils.sendError(event, roomId, e);
|
2019-09-06 03:36:26 +03:00
|
|
|
});
|
|
|
|
};
|