You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
657 B
JavaScript
35 lines
657 B
JavaScript
module.exports = {
|
|
inputs: {
|
|
record: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
request: {
|
|
type: 'ref',
|
|
},
|
|
},
|
|
|
|
async fn(inputs, exits) {
|
|
const board = await Board.archiveOne(inputs.record.id);
|
|
|
|
if (board) {
|
|
sails.sockets.leaveAll(`board:${board.id}`);
|
|
|
|
const userIds = await sails.helpers.getMembershipUserIdsForProject(board.projectId);
|
|
|
|
userIds.forEach((userId) => {
|
|
sails.sockets.broadcast(
|
|
`user:${userId}`,
|
|
'boardDelete',
|
|
{
|
|
item: board,
|
|
},
|
|
inputs.request,
|
|
);
|
|
});
|
|
}
|
|
|
|
return exits.success(board);
|
|
},
|
|
};
|