If a user without permission to view reported posts reports a post, they will not see this reflected in the post.
To fix
- Have a table for who reported which posts
- If someone reported a post they should be able to see that
- Admins and mods can see the total number of reports
Potential post view data structure change
interface IPostView {
this_user_reported: bool
report_count: number
}