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