79178187

Date: 2024-11-11 15:20:26
Score: 0.5
Natty:
Report link

In routes.rb you have

#get 'new', to:'articles#new'

but should have

get 'new', to:'articles#new'

Then you will have /new url

Or if you want to use resources :articles

then your url in browser should be /articles/new (not /new)

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anton Bogdanov