I'm not sure what your question is.
When you start your server, it receives a request for
http://127.0.0.1:3000/app/update-progress
but there is no route for this request (Rails does not know what to do with this request), so you get this error.
To process this request, add a route:
match '/app/update-progress/' => 'some#action'
To learn more about the request, view the request object inside the action.
source share