mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 03:26:04 +01:00
change queue logic, if user has negative rep always queue their post
This commit is contained in:
@@ -18,7 +18,7 @@ module.exports = function (Posts) {
|
|||||||
user.getUserFields(uid, ['uid', 'reputation', 'postcount'], next);
|
user.getUserFields(uid, ['uid', 'reputation', 'postcount'], next);
|
||||||
},
|
},
|
||||||
function (userData, next) {
|
function (userData, next) {
|
||||||
var shouldQueue = meta.config.postQueue && (!userData.uid || (userData.reputation <= 0 && userData.postcount <= 0));
|
var shouldQueue = meta.config.postQueue && (!userData.uid || userData.reputation < 0 || userData.postcount <= 0);
|
||||||
plugins.fireHook('filter:post.shouldQueue', {
|
plugins.fireHook('filter:post.shouldQueue', {
|
||||||
shouldQueue: shouldQueue,
|
shouldQueue: shouldQueue,
|
||||||
uid: uid,
|
uid: uid,
|
||||||
|
|||||||
Reference in New Issue
Block a user