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.

I have a user that signs up and logs in.

Right now their route is rails standard "user/3".

A user belongs to an organization. An org has many users.

I want all users for that org, when they sign in, to have the url http://mysite.com/:organization name.

How would I accomplish this?

share|improve this question

3 Answers

up vote 1 down vote accepted

You have to do something like this...

First add a method to your organization model to show name instead of id in url

def to_param
    name
end

and update your routes as required, and functionality also to show the users of that organization

Organization Controller..

def show
  @organization = Organization.find(params[:organization])
  @users = @organization.users
end

Redirect user to user organization show path after login.

share|improve this answer

I'm not sure how your authentication is setup or what you're using to handle your authentication, but presumably when a user logs in successfully you just change the redirection in your log in action. Something like:

redirect_to user.organization

instead of redirect_to user

share|improve this answer

You need to browse on nested resources. Please look at http://guides.rubyonrails.org/routing.html#nested-resources

UPDATE: more appropriate answer

I think this is more for your scenario http://api.rubyonrails.org/classes/ActionDispatch/Routing/Mapper/Scoping.html#method-i-scope

share|improve this answer
Their example for nested resources is magazines/:magazine_id/article/"id. I was looking for ":organization_name/whatever" where organization name changes depending upon the user.organization – Squadrons Feb 1 at 5:13
just updated my answer – jvnill Feb 1 at 8:24

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.