This repository has been archived on 2025-11-04. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
know-it-all/server/routes/auth/GetMemberOrgs.js

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;