mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-06-14 23:22:19 +02:00
only logged in users can flag
This commit is contained in:
@@ -214,6 +214,10 @@ SocketPosts.getPidPage = function(socket, pid, callback) {
|
||||
}
|
||||
|
||||
SocketPosts.flag = function(socket, pid, callback) {
|
||||
if (!socket.uid) {
|
||||
return callback(new Error('not-logged-in'));
|
||||
}
|
||||
|
||||
var message = '',
|
||||
path = '';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user