17 lines
416 B
Elixir
17 lines
416 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, "actor_basic.json"),
|
|
}
|
|
}
|
|
end
|
|
end
|