mirror of
https://github.com/plankanban/planka.git
synced 2025-12-17 01:11:23 +03:00
12 lines
223 B
JavaScript
Executable File
12 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);
|
|
},
|
|
};
|