I am trying to create a Javascript-free app (don't ask why...) and have run into the apparently common problem of the :delete
method not working.
I found this question which told me I have to use Plug.MethodOverride.
So, I have added
plug Plug.Parser, parsers [:urlencoded, :multipart]
plug Plug.MethodOverride
to the Html pipeline in routers.ex
(I am guessing I should probably move it to somewhere more specific later, but for now, I just wanted it to work quickly). However, the form generated by the resources helper still does not do anything. Do I have to change it to something else? Or am I missing a step in adding the Plug