Files
planka/server/api/helpers/users/get-all-active-ids.js
T

23 lines
453 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,
isDeactivated: false,
});
return sails.helpers.utils.mapRecords(users);
},
};