architex/lib/matrix_server_web/client/controllers/info_controller.ex

20 lines
370 B
Elixir
Raw Normal View History

2021-08-06 21:14:27 +00:00
defmodule MatrixServerWeb.Client.InfoController do
use MatrixServerWeb, :controller
import MatrixServerWeb.Error
2021-06-26 20:02:18 +00:00
@supported_versions ["r0.6.1"]
def versions(conn, _params) do
data = %{versions: @supported_versions}
conn
|> put_status(200)
|> json(data)
end
2021-06-26 20:02:18 +00:00
def unrecognized(conn, _params) do
put_error(conn, :unrecognized)
end
end