Files
talk/perms/utils.js
T
2017-05-18 14:28:43 -06:00

9 lines
173 B
JavaScript

const intersection = require('lodash/intersection');
const check = (user, roles) => {
return intersection(roles, user.roles).length > 0;
};
module.exports = {
check
};