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.

When i do user.role_ids i get a list of ids like [1,2,3] is it possible to convert these id's into the role.name of that table so it would look like [Developer, Team Leader] Etc?

Do i need something like

<td><%= user.role_ids.find_by_name(roles_name.to_s) %></td>
share|improve this question

1 Answer

up vote 1 down vote accepted

I don't get your question, but how about just:

<%= user.roles.collect(&:name) %>
share|improve this answer
Thanks but is there anyway to make it look like Developer, Corporate instead of ["Developer", "Corporate"] looks abit messy – ahmet Jul 27 '11 at 9:39
Yes you can append .join(',') or even .to_sentence to get Rails sugar like Developer, Corporate and Team Leader. – ream88 Jul 27 '11 at 9:42
Im new to all this how would i use .join – ahmet Jul 27 '11 at 9:44
1  
Thanks so much it does this now "Developer, Corporate, and Team Leader" why is there an "," after corporate shouldn't it just be and Team Leader? – ahmet Jul 27 '11 at 9:56
1  
Found it <td><%= user.roles.collect(&:name).to_sentence(:last_word_connector => ' and ') %></td> – ahmet Jul 27 '11 at 10:03
show 1 more comment

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.