Files
planka/server/api/helpers/sessions/create-one.js
2025-08-21 15:10:02 +02:00

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,
});
},
};