mirror of
https://github.com/ClaperCo/Claper.git
synced 2026-02-24 12:09:59 +01:00
11 lines
170 B
Elixir
11 lines
170 B
Elixir
defmodule ClaperWeb.UserView do
|
|
use ClaperWeb, :view
|
|
|
|
def render("user.json", %{user: user}) do
|
|
%{
|
|
uuid: user.uuid,
|
|
email: user.email
|
|
}
|
|
end
|
|
end
|