analytics / lib /plausible_web /plugs /current_path.ex
Leon4gr45's picture
Upload folder using huggingface_hub (part 3)
88211d3 verified
Raw
History Blame Contribute Delete
172 Bytes
defmodule PlausibleWeb.Plugs.CurrentPath do
@moduledoc false
def init(_), do: []
def call(conn, _), do: Plug.Conn.assign(conn, :current_path, conn.request_path)
end