mirror of
https://github.com/wassname/talk.git
synced 2026-07-01 17:11:59 +08:00
10 lines
168 B
JavaScript
10 lines
168 B
JavaScript
module.exports = {
|
|
checkRoles: function (user /* , perm*/) {
|
|
|
|
// this runs before everything
|
|
if (user.status === 'BANNED') {
|
|
return false;
|
|
}
|
|
}
|
|
};
|