В моих маршрутах у меня есть:
resources :accounts
Это дает:
accounts GET /accounts(.:format) accounts#index
POST /accounts(.:format) accounts#create
new_account GET /accounts/new(.:format) accounts#new
edit_account GET /accounts/:id/edit(.:format) accounts#edit
account GET /accounts/:id(.:format) accounts#show
PUT /accounts/:id(.:format) accounts#update
DELETE /accounts/:id(.:format) accounts#destroy
Я бы хотел изменить ТОЛЬКО следующий путь к ресурсу:
new_account GET /accounts/new(.:format) accounts#new
до
new_account GET /register(.:format) accounts#new
Возможно ли это?