katbin/lib/ketbin_web/views/api/paste_view.ex
Amogh Lele 20a0b45954
feat(pastes): add REST routes to view and create pastes
Signed-off-by: Amogh Lele <amogh@dyte.io>
2022-05-07 00:04:59 +05:30

19 lines
324 B
Elixir

defmodule KetbinWeb.Api.PasteView do
use KetbinWeb, :view
def render("paste.json", %{paste: paste}) do
%{
id: paste.id,
content: paste.content,
is_url: paste.is_url
}
end
def render("error.json", _assigns) do
%{
success: false,
msg: "Something went wrong"
}
end
end