mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 21:47:59 +01:00
don't show comments on hidden images
This commit is contained in:
parent
602f8a5ee5
commit
db61882a51
1 changed files with 1 additions and 1 deletions
|
@ -5,5 +5,5 @@
|
|||
= link "View all", to: Routes.comment_path(@conn, :index, cq: "user_id:#{@user.id}")
|
||||
|
||||
.block__content
|
||||
= for {body, comment} <- @comments do
|
||||
= for {body, comment} <- @comments, can?(@conn, :show, comment.image) do
|
||||
= render PhilomenaWeb.CommentView, "_comment_with_image.html", comment: comment, body: body, conn: @conn
|
||||
|
|
Loading…
Reference in a new issue