mirror of
https://github.com/plankanban/planka.git
synced 2025-12-17 17:23:25 +03:00
@@ -1,3 +1,8 @@
|
||||
/*!
|
||||
* Copyright (c) 2024 PLANKA Software GmbH
|
||||
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
||||
*/
|
||||
|
||||
module.exports = {
|
||||
inputs: {
|
||||
record: {
|
||||
@@ -22,11 +27,9 @@ module.exports = {
|
||||
},
|
||||
|
||||
async fn(inputs) {
|
||||
await CardLabel.destroy({
|
||||
labelId: inputs.record.id,
|
||||
});
|
||||
await sails.helpers.labels.deleteRelated(inputs.record);
|
||||
|
||||
const label = await Label.archiveOne(inputs.record.id);
|
||||
const label = await Label.qm.deleteOne(inputs.record.id);
|
||||
|
||||
if (label) {
|
||||
sails.sockets.broadcast(
|
||||
@@ -40,13 +43,13 @@ module.exports = {
|
||||
|
||||
sails.helpers.utils.sendWebhooks.with({
|
||||
event: 'labelDelete',
|
||||
data: {
|
||||
buildData: () => ({
|
||||
item: label,
|
||||
included: {
|
||||
projects: [inputs.project],
|
||||
boards: [inputs.board],
|
||||
},
|
||||
},
|
||||
}),
|
||||
user: inputs.actorUser,
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user