Let's say I want to create a resources
with adding a couple of custom actions to it, the analogue in rails is:
resources :tasks do
member do
get :implement
end
end
Which will return me not only 7 standard routes, but 1 new:
GET /tasks/:id/implement
How can I do it in phoenix?