File size: 172 Bytes
88211d3
 
 
 
 
 
1
2
3
4
5
6
7
defmodule PlausibleWeb.Plugs.CurrentPath do
  @moduledoc false

  def init(_), do: []
  def call(conn, _), do: Plug.Conn.assign(conn, :current_path, conn.request_path)
end