summaryrefslogtreecommitdiff
path: root/lib/matrix_app_service/phoenix/controllers/v1/room_controller.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/matrix_app_service/phoenix/controllers/v1/room_controller.ex')
-rw-r--r--lib/matrix_app_service/phoenix/controllers/v1/room_controller.ex7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/matrix_app_service/phoenix/controllers/v1/room_controller.ex b/lib/matrix_app_service/phoenix/controllers/v1/room_controller.ex
new file mode 100644
index 0000000..409ffa7
--- /dev/null
+++ b/lib/matrix_app_service/phoenix/controllers/v1/room_controller.ex
@@ -0,0 +1,7 @@
+defmodule MatrixAppService.Phoenix.V1.RoomController do
+ use MatrixAppService.Phoenix, :controller
+
+ def show(conn, _params) do
+ send_resp(conn, 404, "")
+ end
+end