Skip to content
Snippets Groups Projects
Verified Commit c8c505fb authored by Marie's avatar Marie
Browse files

fix: allow viewing of muted users posts

This would allow admins and mods to see muted users posts as well as normal users to view them if they ever get a link sent to them.
parent 47cf7f68
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,6 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
this.queryService.generateVisibilityQuery(query, me);
if (me) {
this.queryService.generateMutedUserQuery(query, me);
this.queryService.generateBlockedUserQuery(query, me);
}
......
......@@ -54,7 +54,6 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
this.queryService.generateVisibilityQuery(query, me);
if (me) {
this.queryService.generateMutedUserQuery(query, me);
this.queryService.generateBlockedUserQuery(query, me);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment