Skip to content

Instantly share code, notes, and snippets.

@wttj-tech
Created April 12, 2022 06:14
Show Gist options
  • Save wttj-tech/10b55d4a3c2f9bd96f6650d16080c545 to your computer and use it in GitHub Desktop.
Save wttj-tech/10b55d4a3c2f9bd96f6650d16080c545 to your computer and use it in GitHub Desktop.
defmodule WttjApiWeb.Api.UserView do
use WttjApiWeb, :view
def render("user.json", %{user: user}) do
%{
gender: user.gender,
title: user.title
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment