mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
14 lines
211 B
JavaScript
14 lines
211 B
JavaScript
module.exports = {
|
|
sync: true,
|
|
|
|
inputs: {
|
|
record: {
|
|
type: 'ref',
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
fn(inputs) {
|
|
return inputs.record.toJSON ? inputs.record.toJSON() : inputs.record;
|
|
},
|
|
};
|