mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 05:09:43 +02:00
35 lines
944 B
JavaScript
35 lines
944 B
JavaScript
|
/*!
|
||
|
* Copyright (c) 2024 PLANKA Software GmbH
|
||
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
||
|
*/
|
||
|
|
||
|
module.exports = {
|
||
|
inputs: {
|
||
|
recordOrRecords: {
|
||
|
type: 'ref',
|
||
|
required: true,
|
||
|
},
|
||
|
},
|
||
|
|
||
|
async fn(inputs) {
|
||
|
let baseCustomFieldGroupIdOrIds;
|
||
|
if (_.isPlainObject(inputs.recordOrRecords)) {
|
||
|
({
|
||
|
recordOrRecords: { id: baseCustomFieldGroupIdOrIds },
|
||
|
} = inputs);
|
||
|
} else if (_.every(inputs.recordOrRecords, _.isPlainObject)) {
|
||
|
baseCustomFieldGroupIdOrIds = sails.helpers.utils.mapRecords(inputs.recordOrRecords);
|
||
|
}
|
||
|
|
||
|
const customFieldGroups = await CustomFieldGroup.qm.delete({
|
||
|
baseCustomFieldGroupId: baseCustomFieldGroupIdOrIds,
|
||
|
});
|
||
|
|
||
|
await sails.helpers.customFieldGroups.deleteRelated(customFieldGroups);
|
||
|
|
||
|
await CustomField.qm.delete({
|
||
|
baseCustomFieldGroupId: baseCustomFieldGroupIdOrIds,
|
||
|
});
|
||
|
},
|
||
|
};
|