Maybe this is a feature request - I'd like to be able to follow or subscribe to specific users. I.e. be kept abreast of questions and answers that certain users make. Seems like this could be a good "social" feature for the platform. Also it would be another interesting metric in one's user profile - how many followers someone has, etc.
Done a while ago.
We've also created a django app django-followit, which is available for reuse on pypi and
github.
To use it, just add to your models
import followit
follow.register(MyModel)
and add to the urls.py
(r'^followit/', include('followit.urls')),
Then run
python manage.py syncdb
More models to follow can be added later and the follow function activated by re-running syncdb.
To follow or unfollow, post to the urls described here.
Asked: Feb 26 '11
Seen: 99 times
Last updated: Oct 07 '11
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
Since this feature has been implemented, can this question be marked as resolved.
rags (Oct 07 '11)