blob: c0c027f3719a3fdbe30bd106546c2cc549f70dfa (
plain) (
tree)
|
|
defmodule LSG.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
|