-
Notifications
You must be signed in to change notification settings - Fork 88
Home
Welcome to the django-friends wiki!
I haven’t worked with friends in a while. I’m just throwing this documentation here because I created some for my use. Please check it!
Model Contact
Friendship:
objects:
friends_for_user(user) — this returns the friends for ‘user’
are_friends(user1, user2) — checks if ‘user1’ and ‘user2’ are friends
remove(user1,user2) — removes friendships between ‘user1’ and ‘user2’
friend_set_for(user) —returns a set of user objects who are friends with ‘user’
JoinInvitation:
objects:
send_invitation(from_user, to_email, message) — sends an email invitation, from_user is the user object, to_email is the email, and message is the actual invitation message.
accept(new_user) — called when new user accepts a join invitation.
FriendshipInvitation:
objects:
invitations()
accept()
decline()