mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
68 lines
1.2 KiB
JavaScript
68 lines
1.2 KiB
JavaScript
module.exports = {
|
|
inputs: {
|
|
record: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
values: {
|
|
type: 'json',
|
|
required: true,
|
|
},
|
|
project: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
board: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
list: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
card: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
actorUser: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
request: {
|
|
type: 'ref',
|
|
},
|
|
},
|
|
|
|
async fn(inputs) {
|
|
const { values } = inputs;
|
|
|
|
const action = await Action.updateOne(inputs.record.id).set({ ...values });
|
|
|
|
if (action) {
|
|
sails.sockets.broadcast(
|
|
`board:${inputs.board.id}`,
|
|
'actionUpdate',
|
|
{
|
|
item: action,
|
|
},
|
|
inputs.request,
|
|
);
|
|
|
|
sails.helpers.utils.sendWebhooks.with({
|
|
event: 'actionUpdate',
|
|
data: {
|
|
item: action,
|
|
included: {
|
|
projects: [inputs.project],
|
|
boards: [inputs.board],
|
|
lists: [inputs.list],
|
|
cards: [inputs.card],
|
|
},
|
|
},
|
|
user: inputs.actorUser,
|
|
});
|
|
}
|
|
|
|
return action;
|
|
},
|
|
};
|