Files
planka/server/api/helpers/users/get-all-ids.js
Maksim Eltyshev 54e230d4c1 ref: Refactoring
2025-11-27 18:24:55 +01:00

22 lines
425 B
JavaScript

/*!
* Copyright (c) 2024 PLANKA Software GmbH
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
*/
module.exports = {
inputs: {
roleOrRoles: {
type: 'json',
required: true,
},
},
async fn(inputs) {
const users = await User.qm.getAll({
roleOrRoles: inputs.roleOrRoles,
});
return sails.helpers.utils.mapRecords(users);
},
};