Files
talk/services/moderation/phases/staff.js
T
2018-01-22 16:11:13 -07:00

11 lines
285 B
JavaScript

const { IGNORE_FLAGS_AGAINST_STAFF } = require('../../../config');
// If a given user is a staff member, always approve their comment.
module.exports = ctx => {
if (IGNORE_FLAGS_AGAINST_STAFF && ctx.user && ctx.user.isStaff()) {
return {
status: 'ACCEPTED',
};
}
};