feat: #8475, allow flagging self posts

dont count flags towards self posts
dont allow flagging your own account
This commit is contained in:
Barış Soner Uşaklı
2020-11-17 21:28:32 -05:00
parent 62b62821c1
commit a6afcfd531
3 changed files with 6 additions and 3 deletions

View File

@@ -42,7 +42,7 @@ module.exports = function (SocketPosts) {
postData.display_edit_tools = results.canEdit.flag;
postData.display_delete_tools = results.canDelete.flag;
postData.display_purge_tools = results.canPurge;
postData.display_flag_tools = socket.uid && !postData.selfPost && results.canFlag.flag;
postData.display_flag_tools = socket.uid && results.canFlag.flag;
postData.display_moderator_tools = postData.display_edit_tools || postData.display_delete_tools;
postData.display_move_tools = results.isAdmin || results.isModerator;
postData.display_change_owner_tools = results.isAdmin || results.isModerator;