18
lib/eventos_web/views/comment_view.ex
Normal file
18
lib/eventos_web/views/comment_view.ex
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
%{id: comment.id,
|
||||
url: comment.url,
|
||||
text: comment.text}
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user