summaryrefslogtreecommitdiff
path: root/lib/matrix_app_service_web/router.ex
blob: 3a24510684f1e2f7c557e2b66085a1d7e7802c7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
defmodule MatrixAppServiceWeb.Router do
  use MatrixAppServiceWeb, :router

  pipeline :api do
    plug :accepts, ["json"]
  end

  scope "/api", MatrixAppServiceWeb do
    pipe_through :api
  end
end