1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00
planka/server/api/helpers/users/get-admin-ids.js

10 lines
176 B
JavaScript
Raw Normal View History

module.exports = {
async fn() {
const users = await sails.helpers.users.getMany({
isAdmin: true,
});
return sails.helpers.utils.mapRecords(users);
},
};