philomena/lib/philomena_web/views/comment_view.ex
2019-12-11 17:21:14 -05:00

6 lines
194 B
Elixir

defmodule PhilomenaWeb.CommentView do
use PhilomenaWeb, :view
defp comment_body_class(%{destroyed_content: true}), do: "comment--destroyed"
defp comment_body_class(_comment), do: nil
end