mirror of
https://github.com/plankanban/planka.git
synced 2025-12-21 01:11:26 +03:00
feat: Add legal requirements (#1306)
This commit is contained in:
28
server/api/helpers/sessions/create-one.js
Normal file
28
server/api/helpers/sessions/create-one.js
Normal file
@@ -0,0 +1,28 @@
|
||||
/*!
|
||||
* 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,
|
||||
});
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user