12 lines
304 B
JavaScript
12 lines
304 B
JavaScript
async function GetMemberOrgs(req, res, next) {
|
|
// Retrieve all of the organizations the user is a part of
|
|
const user = req.user;
|
|
|
|
const result = await user.getMemberOrg({
|
|
attributes: { exclude: ['updatedAt'] },
|
|
});
|
|
|
|
return res.send(result);
|
|
}
|
|
|
|
module.exports = GetMemberOrgs;
|