philomena/lib/philomena_web/views/conversation_view.ex
2019-11-15 23:38:42 -05:00

9 lines
No EOL
229 B
Elixir

defmodule PhilomenaWeb.ConversationView do
use PhilomenaWeb, :view
def other_party(user_id, %{to_id: user_id} = conversation),
do: conversation.from
def other_party(_user_id, conversation),
do: conversation.to
end