2018-05-17 11:32:23 +02:00
|
|
|
defmodule EventosWeb.CommentView do
|
|
|
|
use EventosWeb, :view
|
|
|
|
alias EventosWeb.CommentView
|
|
|
|
|
|
|
|
def render("index.json", %{comments: comments}) do
|
|
|
|
%{data: render_many(comments, CommentView, "comment.json")}
|
|
|
|
end
|
|
|
|
|
|
|
|
def render("show.json", %{comment: comment}) do
|
|
|
|
%{data: render_one(comment, CommentView, "comment.json")}
|
|
|
|
end
|
|
|
|
|
|
|
|
def render("comment.json", %{comment: comment}) do
|
2018-07-27 10:45:35 +02:00
|
|
|
%{id: comment.id, uuid: comment.uuid, url: comment.url, text: comment.text}
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
end
|