mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
11 lines
223 B
JavaScript
Executable file
11 lines
223 B
JavaScript
Executable file
module.exports = {
|
|
async fn(inputs, exits) {
|
|
const users = await sails.helpers.getUsers({
|
|
isAdmin: true,
|
|
});
|
|
|
|
const userIds = sails.helpers.mapRecords(users);
|
|
|
|
return exits.success(userIds);
|
|
},
|
|
};
|