First time here? Check out the FAQ!
4

Is it possible to follow a user on AskBot?
 

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.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
updated 13 years ago
locomo's avatar
83
locomo
asked 14 years ago

Comments

Agreed, this was requested before - on todo list now. It is hard to tell when it will be done, feel free to get involved - by either coding or helping to hire someone do it. We have a team shaping up, but it will still probably have some time to get up to speed.
Evgeny's avatar Evgeny (14 years ago)
cool - sorry I missed the earlier question
locomo's avatar locomo (14 years ago)

Since this feature has been implemented, can this question be marked as resolved.

rags's avatar rags (13 years ago)
see more comments

1 Answer

2

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.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
updated 13 years ago, answered 13 years ago
link

Comments

Can this be used to follow tags also? or just users?

ryanlerch2's avatar ryanlerch2 (12 years ago)

Yes - but wording is different. Tags can be marked as interesting, ignored and subscribed (the latter needs to be enabled in the admin settings).

Evgeny's avatar Evgeny (12 years ago)

I can't seem to find this setting in my admin settings. is there somewhere in the docs that covers this? thanks for the help :)

ryanlerch2's avatar ryanlerch2 (12 years ago)

you just need to go to the user profile and click button "follow".

Evgeny's avatar Evgeny (12 years ago)
see more comments