summaryrefslogtreecommitdiff
path: root/lib/matrix_app_service_web/controllers/v1/user_controller.ex
blob: 31301d27e2c4e25d414bad4c52cd33ba24d039a5 (plain) (blame)
1
2
3
4
5
6
7
defmodule MatrixAppServiceWeb.V1.UserController do
  use MatrixAppServiceWeb, :controller

  def show(conn, _params) do
    send_resp(conn, 404, "")
  end
end