better support for pagination
we can't support django.core.paginator.Paginator (we need pk based pagination). best way to go is to ship our own paginator and make sure that it plays nicely with django.views.generic.list ListView
Have there been any updates on this? I feel I'd like to use it.
@JJZolper not yet. you will get a notification from github when this is implemented ;)
Awesome thanks!
This will be great. Is there any process on this issue? I just started to have a look at how to combine:
enricher = Enrich()
# The news feeds (or timelines) store the activities from the people you follow. There is both a simple timeline
# newsfeed (similar to twitter) and an aggregated version (like facebook).
feed = feed_manager.get_feed('timeline_aggregated', user.id)
activities = feed.get(limit=25)['results'] <--
***
and https://getstream.io/docs_rest/ and and Django Rest Framework, if you have any advice :)
Thanks,
D
Any updates?