mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 21:29:43 +02:00
15 lines
211 B
JavaScript
15 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;
|
||
|
},
|
||
|
};
|