Getting the current path in a LiveView

Viewed 3016

In a normal route:

get /index, MyController, :index

I can simply get the route from Plug.Conn's path_info function.

However if I have a live route, how do I retrieve the current path?

live /index, IndexLive

1 Answers
Related