mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-02-23 09:40:38 +00:00
11 lines
234 B
Elixir
11 lines
234 B
Elixir
defmodule EventosWeb.OutboxesController do
|
|
|
|
use EventosWeb, :controller
|
|
|
|
def show(conn) do
|
|
actor = Guardian.Plug.current_resource(conn).actor
|
|
events = actor.events
|
|
|
|
render(conn, "index.json", events: events)
|
|
end
|
|
end
|