1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00

chore: Cleanup

This commit is contained in:
Maksim Eltyshev 2024-04-08 01:47:24 +02:00
parent 99f0fe3f2e
commit 7273b33768
6 changed files with 0 additions and 95 deletions

View file

@ -1,5 +1,3 @@
const services = require('../../services/slack');
const Errors = {
NOT_ENOUGH_RIGHTS: {
notEnoughRights: 'Not enough rights',
@ -57,11 +55,6 @@ module.exports = {
throw Errors.CARD_NOT_FOUND;
}
const messageText = '*' + card.name + '* was deleted by ' + currentUser.name;
services.sendSlackMessage(messageText)
.then(() => { console.log('Slack message sent successfully.'); })
.catch((error) => { console.error('Failed to send Slack message:', error.message); });
return {
item: card,
};