ligh7hau5/commands/fediverse/boo.js

15 lines
435 B
JavaScript
Raw Normal View History

exports.runQuery = function (roomId, event, userInput) {
2019-07-04 00:27:39 +03:00
axios({
method: 'POST',
url: `${config.fediverse.domain}/api/v1/statuses/${userInput}/unfavourite`,
headers: { Authorization: `Bearer ${fediverse.auth.access_token}` },
2019-07-04 00:27:39 +03:00
})
.then(() => {
matrix.utils.addReact(event, '✅');
})
2019-07-04 00:27:39 +03:00
.catch((e) => {
matrix.utils.addReact(event, '❌');
matrix.utils.sendError(event, roomId, e);
2019-07-04 00:27:39 +03:00
});
};