mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 05:09:43 +02:00
23 lines
569 B
JavaScript
23 lines
569 B
JavaScript
|
module.exports = {
|
||
|
inputs: {
|
||
|
idOrIds: {
|
||
|
type: 'json',
|
||
|
custom: (value) => _.isString(value) || _.every(value, _.isString),
|
||
|
required: true,
|
||
|
},
|
||
|
exceptUserIdOrIds: {
|
||
|
type: 'json',
|
||
|
custom: (value) => _.isString(value) || _.every(value, _.isString),
|
||
|
},
|
||
|
},
|
||
|
|
||
|
async fn(inputs) {
|
||
|
const cardSubscriptions = await sails.helpers.cards.getCardSubscriptions(
|
||
|
inputs.idOrIds,
|
||
|
inputs.exceptUserIdOrIds,
|
||
|
);
|
||
|
|
||
|
return sails.helpers.utils.mapRecords(cardSubscriptions, 'userId', _.isArray(inputs.idOrIds));
|
||
|
},
|
||
|
};
|