summaryrefslogtreecommitdiff
path: root/lib/lsg_matrix/plug.ex
blob: c64ed11e680a2f824e92ec17fc10c200c824070c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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