mirror of
https://github.com/plankanban/planka.git
synced 2025-12-20 17:25:39 +03:00
29 lines
554 B
JavaScript
29 lines
554 B
JavaScript
|
|
/*!
|
||
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
||
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
||
|
|
*/
|
||
|
|
|
||
|
|
const { v4: uuid } = require('uuid');
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
inputs: {
|
||
|
|
values: {
|
||
|
|
type: 'json',
|
||
|
|
required: true,
|
||
|
|
},
|
||
|
|
withHttpOnlyToken: {
|
||
|
|
type: 'boolean',
|
||
|
|
defaultsTo: false,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
|
||
|
|
async fn(inputs) {
|
||
|
|
const { values } = inputs;
|
||
|
|
|
||
|
|
return Session.qm.createOne({
|
||
|
|
...values,
|
||
|
|
httpOnlyToken: inputs.withHttpOnlyToken ? uuid() : null,
|
||
|
|
});
|
||
|
|
},
|
||
|
|
};
|