Add undocumented default user default settings.
This commit is contained in:
parent
5602293690
commit
0872f5f394
|
@ -32,7 +32,12 @@ def render("account.json", %{user: user}) do
|
||||||
avatar: image,
|
avatar: image,
|
||||||
avatar_static: image,
|
avatar_static: image,
|
||||||
header: header,
|
header: header,
|
||||||
header_static: header
|
header_static: header,
|
||||||
|
source: %{
|
||||||
|
note: "",
|
||||||
|
privacy: "public",
|
||||||
|
sensitive: "false"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,12 @@ test "Represent a user account" do
|
||||||
avatar: "https://placehold.it/48x48",
|
avatar: "https://placehold.it/48x48",
|
||||||
avatar_static: "https://placehold.it/48x48",
|
avatar_static: "https://placehold.it/48x48",
|
||||||
header: "https://placehold.it/700x335",
|
header: "https://placehold.it/700x335",
|
||||||
header_static: "https://placehold.it/700x335"
|
header_static: "https://placehold.it/700x335",
|
||||||
|
source: %{
|
||||||
|
note: "",
|
||||||
|
privacy: "public",
|
||||||
|
sensitive: "false"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
assert expected == AccountView.render("account.json", %{user: user})
|
assert expected == AccountView.render("account.json", %{user: user})
|
||||||
|
|
Loading…
Reference in New Issue