mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 21:29:43 +02:00
10 lines
176 B
JavaScript
10 lines
176 B
JavaScript
|
module.exports = {
|
||
|
async fn() {
|
||
|
const users = await sails.helpers.users.getMany({
|
||
|
isAdmin: true,
|
||
|
});
|
||
|
|
||
|
return sails.helpers.utils.mapRecords(users);
|
||
|
},
|
||
|
};
|