Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Imagine you are working on a f,acebook(to skip the g,f,w) like site, and you need some routes like:

  • www.mydomain.com/ihome/jim/posts
  • www.mydomain.com/ihome/jim/post/3
  • www.mydomain.com/ihome/jim/posts/3/edit.

Then how to set the routes to get the 'jim' part? I know I can use the following if there is no account part:

namespace :ihome do
  resources :posts
end
share|improve this question

1 Answer

up vote 3 down vote accepted

A quick (untested) answer is : use the scope, it will give you a params[:user]

namespace :ihome do
  scope ":user" do
    resources :posts
  end
end

Have a look at the docs here : http://guides.rubyonrails.org/routing.html#defining-defaults

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.