17 lines
419 B
Elixir
17 lines
419 B
Elixir
|
defmodule EventosWeb.SearchView do
|
||
|
@moduledoc """
|
||
|
View for Events
|
||
|
"""
|
||
|
use EventosWeb, :view
|
||
|
alias EventosWeb.{EventView, ActorView, GroupView, AddressView}
|
||
|
|
||
|
def render("search.json", %{events: events, actors: actors}) do
|
||
|
%{
|
||
|
data: %{
|
||
|
events: render_many(events, EventView, "event_simple.json"),
|
||
|
actors: render_many(actors, ActorView, "acccount_basic.json"),
|
||
|
}
|
||
|
}
|
||
|
end
|
||
|
end
|