Example #1
0
def get_friend_requests_pending(user_id, ids_only=False):
	return user_relations_dao.get_friends(user_id, reverse=True, not_mutual=True, ids_only=ids_only)
Example #2
0
def get_friend_requests_sent(user_id, ids_only=False):
	return user_relations_dao.get_friends(user_id, not_mutual=True, ids_only=ids_only)
Example #3
0
def get_friends(user_id, ids_only=False):
	return user_relations_dao.get_friends(user_id, mutual=True, ids_only=ids_only)