我有以下的路徑,在我的Rails應用程序:Rails 3的路由:資源和路徑
resources :settings, :path => :account, :only => [:edit, :update]
這將創建下列內容:
edit_setting GET /account/:id/edit(.:format) settings#edit
setting PUT /account/:id(.:format) settings#update
我怎樣寫它,因此:id
省略?
所以用戶可以只訪問/account/edit