I have this in router.ex:
get "/my_url/my_url2/:token", MySuperController, :my_action
When I call this:
<%= link("something", to: my_super_url(@conn, :my_action, token: "12345")) %>
I get an error:
protocol Phoenix.Param not implemented for [token: "12345"]
How can I fix it?