fix: Prevent deactivated users from receiving socket events when possible
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
/*!
|
||||
* 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);
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user