mendicant-original / puzzlenode

Quiz application inspired by Project Euler and the Internet Problem Solving Contest (IPSC)
puzzlenode.com
81 stars 43 forks source link

User's names in comments should link to their profile #73

Closed jordanbyron closed 12 years ago

justinramel commented 12 years ago

Happy to pick this one up, looks like a nice way to ease myself in.

Is it as simple as converting the comment.user.name into a link?

comments/index.html.haml

= comment.user.name

would become:

= link_to comment.user.name, user_path(comment.user.nickname)

jordanbyron commented 12 years ago

Yup, it's that simple :wink: and it is assigned to you.