I am using devise and i wanted to login using my id and password and then i want to display the users name along with a link add as friend which when clicked should send a request to that user and after the user accepts the request it should be added to my friends list. how can i do it?
|
|
|||||
|
closed as not a real question by jonsca, Eitan T, skolima, Stewbob, rene Sep 24 '12 at 12:50
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Check out this screencast on RailsCasts. It should give you an idea on how to accomplish it. You could make a FriendRequest model which would have 2 belongs_to fields: requesting_user_id and requested_user_id. You could then display friend requests like this:
When the user accepts the friend request, it would then destroy the friend request, and then create two new friendships, like in the RailsCast above. Where friend 1 is friends with friend 2, and friend 2 is friends with friend 1. Having a friendship in both directions give some power. You could add extra fields to the friendship model like "description". Then each friend have the possibility to add a description to their friendship with each other. Or maybe a "rating" field. Then friend 1 can rate friend 2 with 3 stars, but friend 2 can rate friend 1 with 5 stars. |
|||||||||
|