fediverse.space/backend/lib/backend_web/router.ex

16 wiersze
364 B
Elixir
Czysty Zwykły widok Historia

2019-07-14 11:47:06 +00:00
defmodule BackendWeb.Router do
use BackendWeb, :router
pipeline :api do
plug(:accepts, ["json"])
2019-07-14 11:47:06 +00:00
end
scope "/api", BackendWeb do
pipe_through(:api)
2019-07-14 11:47:06 +00:00
resources("/instances", InstanceController, only: [:index, :show])
resources("/graph", GraphController, only: [:index])
resources("/search", SearchController, only: [:index])
2019-07-14 11:47:06 +00:00
end
end