mediapop / django-friendface

Getting Facebook to work for Django.
2 stars 0 forks source link

Bind FacebookUser to User instead of Profile #19

Closed kitsunde closed 11 years ago

kitsunde commented 12 years ago

Django 1.5 has pluggable user models (yay) so we will stop using profile completely. The current state is pretty ugly doing:

 profile = request.user.get_profile()
 profile.facebook

rather than just:

request.user.facebook

Currently it also requires us to figure out what the UserProfile name is and doing a rather ugly text construction to do a join on it.

kitsunde commented 11 years ago

This is fixed in the 1.5 branch.