mirror of
https://github.com/plankanban/planka.git
synced 2025-12-17 17:23:25 +03:00
10 lines
138 B
JavaScript
Executable File
10 lines
138 B
JavaScript
Executable File
module.exports = {
|
|
async fn() {
|
|
const users = await sails.helpers.users.getMany();
|
|
|
|
return {
|
|
items: users,
|
|
};
|
|
},
|
|
};
|