mirror of
				https://github.com/NodeBB/NodeBB.git
				synced 2025-10-31 19:15:58 +01:00 
			
		
		
		
	Ability to enable/disable the upvote/downvote system, closes #1672
This commit is contained in:
		| @@ -98,7 +98,7 @@ var async = require('async'), | ||||
| 	} | ||||
|  | ||||
| 	Favourites.upvote = function(pid, uid, callback) { | ||||
| 		if (meta.config['votingEnabled'] === false) { | ||||
| 		if (meta.config['reputation:disabled'] === false) { | ||||
| 			return callback(false); | ||||
| 		} | ||||
| 		 | ||||
| @@ -106,7 +106,7 @@ var async = require('async'), | ||||
| 	}; | ||||
|  | ||||
| 	Favourites.downvote = function(pid, uid, callback) { | ||||
| 		if (meta.config['votingEnabled'] === false) { | ||||
| 		if (meta.config['reputation:disabled'] === false) { | ||||
| 			return callback(false); | ||||
| 		} | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user