diff options
author | Jordan Bracco <href@random.sh> | 2022-12-20 02:19:42 +0000 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2022-12-20 19:29:41 +0100 |
commit | 9958e90eb5eb5a2cc171c40860745e95a96bd429 (patch) | |
tree | b49cdb1d0041b9c0a81a14950d38c0203896f527 /lib/nola_matrix/plug.ex | |
parent | Rename to Nola (diff) |
Actually do not prefix folders with nola_ refs T77
Diffstat (limited to 'lib/nola_matrix/plug.ex')
-rw-r--r-- | lib/nola_matrix/plug.ex | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/nola_matrix/plug.ex b/lib/nola_matrix/plug.ex deleted file mode 100644 index c64ed11..0000000 --- a/lib/nola_matrix/plug.ex +++ /dev/null @@ -1,25 +0,0 @@ -defmodule Nola.Matrix.Plug do - - defmodule Auth do - def init(state) do - state - end - - def call(conn, _) do - hs = Application.get_env(:matrix_app_service, :homeserver_token) - MatrixAppServiceWeb.AuthPlug.call(conn, hs) - end - end - - defmodule SetConfig do - def init(state) do - state - end - - def call(conn, _) do - config = Application.get_all_env(:matrix_app_service) - MatrixAppServiceWeb.SetConfigPlug.call(conn, config) - end - end - -end |