mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-01-23 17:18:36 +00:00
559c889f1b
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
10 lines
237 B
Elixir
10 lines
237 B
Elixir
defmodule MobilizonWeb.OutboxesController do
|
|
use MobilizonWeb, :controller
|
|
|
|
def show(conn) do
|
|
actor = Guardian.Plug.current_resource(conn).actor
|
|
events = actor.events
|
|
|
|
render(conn, "index.json", events: events)
|
|
end
|
|
end
|