django-activity-stream
django-activity-stream copied to clipboard
Generate generic activity streams from the actions on your site. Users can follow any actors' activities for personalized streams.
- Dynamic serializers and viewsets for the registered models in the actstream.registry - Default config for Action/Follow - Views to match (most) streams in the action manager - Ability to...
Hi there! I'm considering using django-activity-stream for my project, it seems to fit perfetcly except one little hiccup — Django Sites framework requirement. I noticed that `django.contrib.sites` is only being...
Look into using pluggy for customizing parts of the app instead of relying on django settings config. Might b a good idea, might not make sense
We need to update the app to provide the up to date spec for v2.0 AS https://www.w3.org/TR/activitystreams-core/#example-1 It's been 11 years since the 1.0 was first introduced so we are...
In the examples the verbs are past tense: ``` justquick (actor) closed (verb) issue 2 (object) on django-activity-stream (target) 12 hours ago ``` But the [spec](http://activitystrea.ms/schema/1.0/) the documentation says to...
Hi, I would like to know if there is a way to send signal passing a list of `action_object`s and/or a list of `target`s. ``` action.send( request.user, verb="closed", action_object=[obj1, obj2],...
Can I get a proper documentation on how to use ajax or javascript to follow and unfollow objects then return - 'unfollow' if I follow and 'Follow' if I unfollow....
I think the w3c spec mentions Collections of objects. This would be useful to support. The use case for something like this is: - a single user likes two posts...